Hi,
How i can change (from posted date) and show in font end and google results the last updated date of my blog posts?
I would like in blog post to show Last Updated on April 8, 2016.
Thanks!
<?php if($param_date) : ?>
<li class="date-mobile">
<time class="entry-date" datetime="<?php echo esc_attr(get_the_date(DATE_W3C)); ?>">
<?php echo esc_html(get_the_date()); ?>
</time>
</li>
<?php endif; ?>
<?php if($param_date) && is_singular() : ?>
<?php if($param_date) : ?>
<?php if($param_date && is_single()) : ?>
<li>
<span>Last modified on: </span>
<?php echo the_modified_date(); ?>
</li>
<?php endif; ?>