我想展示"last updated date" 在帖子和页面的前面<因此,我在函数中添加了以下代码。php文件
function wpb_last_updated_date( $content ) {
$u_time = get_the_time(\'U\');
$u_modified_time = get_the_modified_time(\'U\');
if ($u_modified_time >= $u_time + 86400) {
$updated_date = get_the_modified_time(\'F jS, Y\');
$updated_time = get_the_modified_time(\'h:i a\');
$custom_content .= \'<p class="last-updated" style="text-align:right">Last updated on \'. $updated_date . \' at \'. $updated_time .\'</p>\';
}
$custom_content .= $content;
return $custom_content;
}
add_filter( \'the_content\', \'wpb_last_updated_date\' );
行得通,但我不想表现出来it 在我的主页上我该怎么办?