2016-01-28, 01:56:07
Always used to have
to show the last save date of a page.
If I want to use the html5 preferred method of a <time> element so google can read it easier I do this:
Is that right?
PHP Code:
<?php get_page_date('F jS, Y'); ?>
to show the last save date of a page.
If I want to use the html5 preferred method of a <time> element so google can read it easier I do this:
Code:
<time class="published" datetime="<?php get_page_date('c'); ?>"><?php get_page_date('F jS, Y'); ?> </time>