显示更新日期而不是发布日期

时间:2019-01-27 作者:rudyards

发布日期和更新日期都显示在帖子页面上。如果最后一个日期已更新,如何替换发布日期?

代码如下:

Published on <a class="entry-date" href="<?php echo 
get_month_link(get_post_time(\'Y\'),get_post_time(\'m\')); ?>" > 
<span itemprop="datePublished"><?php echo get_the_date(\'M j, Y\'); ?> 
</span>/a>  
<span class="entry-meta" itemprop="dateModified"><font color="ea2f10">Last 
updated on: <?php the_modified_date(\'F j, Y\'); ?> at <?php 
the_modified_date(\'g:i a\'); ?></font></span>

1 个回复
SO网友:Xavier C.

不确定这是否是您想要的:

Published on <a class="entry-date" href="<?php echo 
get_month_link(get_post_time(\'Y\'),get_post_time(\'m\')); ?>" > 
<span itemprop="datePublished"><?php echo the_modified_date(\'F j, Y\'); ?> 
</span></a>
这将用上次修改的日期替换发布日期