教程前言:
使用 WordPress 发布文章的时候,只会显示文章的发布时间,但是对于一些技术性的文章,对时效性的要求比较高,所以需要在文章中添加一个提醒。
添加文章的最后更新时间
其实要解决这个问题,我们只需要在当前WordPress 主题模板下的“functions.php”文件中添加一行代码。
代码如下:
//在文章和页面结尾添加最后更新时间
function my_last_updated_date( $content ) {
$u_time = get_the_time( 'U' );
$u_modified_time = get_the_modified_time( 'U' );
$custom_content = '';
if ( $u_modified_time >= $u_time + 86400 ) {
$updated_date = get_the_modified_time( 'Y-m-d H:i' ); //这里设置时间显示格式,可自由调整。
$custom_content .= '<div class="last-updated">本文最后更新于:' . $updated_date . ' </div>';
}
$content .= $custom_content;
return $content;
}
add_filter( 'the_content', 'my_last_updated_date' );
转载请注明:汇站网 » WordPress-为文章添加最后更新时间