Denis
Denis

Reputation: 2469

How to add date field to Drupal?

There is way to add date to the post in Drupal? For example here, under the image there is date (static date, I put this date in the editor), but maybe there is way to configure drupal to add this date automatically?

Upvotes: 1

Views: 164

Answers (1)

Milo LaMar
Milo LaMar

Reputation: 2256

Add something like this to your node-blog.tpl.php theme file.

'<span class="date">'.format_date($node->created, 'custom', "d F Y").'</span>'

Upvotes: 2

Related Questions