Today’s date on your WordPress blog
Have you ever wanted to display today’s date on your blog? Of course that yes, because it looks profesional, useful and informative. Here is a very easy way to add today’s date on your WordPress blog. This is very simple php code for showing date.
Here is code:
<?php echo date('l jS F Y'); ?>
The date format can be easily formatted. You can get more info on the date() php function here. Thanks for this WordPress recipe for Wprecipes.com.