我添加了以下功能(从网站复制),它在每个帖子/页面上显示最新帖子/页面更新的日期和时间。它工作得很好,但我想阻止它显示在主页上。请帮忙。
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">Last updated on \'. $updated_date . \' at \'. $updated_time .\'</p>\';
}
$custom_content .= $content;
return $custom_content;
}
add_filter( \'the_content\', \'wpb_last_updated_date\' );
最合适的回答,由SO网友:TheDeadMedic 整理而成
使用is_front_page()
如果为true,则在函数开始时退出:
function wpb_last_updated_date( $content ) {
if ( is_front_page() ) {
return $content;
}
// Rest of your function
}