Personal Wp.blogspot.com

The right way to Show Right this moment’s Date in WordPress?

The right way to Show Right this moment’s Date in WordPress?

A pattern of displaying present date which was began with newspapers has been tailored by many blogs. As increasingly customers are utilizing WordPress to create journal fashion theme, that is simply one of many options that may be an awesome addon to your web site. Having a present date seems skilled, and it's actually helpful in case your articles are dated. You would possibly suppose that including a date to WordPress is difficult and would require a number of steps, however it's a quick and easy methodology. On this article, we'll share a snippet that may will let you show at the moment’s date in WordPress or every other PHP primarily based web site.

All that you must do is place the next code in a theme file of your alternative, mostly in header.php:

<?php echo date('l jS F Y'); ?>

The above code will show the date within the following format:

Thursday, 17th September 2009

If you don't just like the formatting above, you possibly can have a look at the PHP Date Manual for different parameters.

Now one other means to do that is by simply extracting your WordPress admin settings. You'll be able to go to Settings > Basic and choose the date format in there and easily add this code as a substitute of the above one:

<?php echo date(get_option('date_format')); ?>
Tutorials