barkins
Member
Posted 2 years ago #
How do I setup my blog to have each post have the date, even if it's the same day from the first post of the day?
Right now, just the date appears on the latest post of the day, the older posts of the day don't have the date. I want to make it, so that each post has the date.
Thanks
Hi,
You need to edit the index.php and signle.php/page.php file of your theme and add the code the_date cade:
<?php the_date( $format, $before, $after, $echo ); ?>
Add the code where you want to display the date.
Refer these articles:
http://codex.wordpress.org/Template_Tags/the_date
http://codex.wordpress.org/Formatting_Date_and_Time
Thanks,
Shane G.
barkins
Member
Posted 2 years ago #
Thanks Zeo. That worked like a charm.