有不同的方法可以做到这一点。
在我看来,最简单的方法是wp_get_recent_posts
检索最后一篇文章并打印文章修改日期。
将其包装到函数中,使其具有灵活性和可重用性。在您的functions.php
您可以放置:
function my_last_updated( $format = \'\' ) {
$lasts = wp_get_recent_posts( array(\'numberposts\'=>1, \'post_status\'=>\'publish\') );
if ( empty($lasts) ) return;
$last = array_pop($lasts);
if ( empty($format) ) $format = get_option(\'date_format\');
return mysql2date( $format, $last[\'post_modified\'] );
}
然后您可以这样使用它:
<p>Last updated: <?php echo my_last_updated() ?>.</p>
论点
$format
让您为日期选择不同的日期格式,请参见
here 选择一个。如果未传递任何内容,则使用WP options中设置的格式。