Reputation: 2469
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
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