
// 文章末尾添加更新日期时间 https://www.itbulu.com/Update date-end-content.html
function itbulu_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' );
$custom_content .= '<div class="last-updated">文章最后更新于 ' . $updated_date . ' </div>';
}
$content .= $custom_content;
return $content;
}
add_filter( 'the_content', 'itbulu_last_updated_date' );这里,我们也可以根据需要添加一个 last-updated 的样式CSS。
.last-updated{color:red;}我们可以根据需要选择以及自定义文本。