如果页面中只显示1篇帖子,您可以使用the_title()
筛选以隐藏标题。
最简单的方法是:
function hide_my_title( $title, $id = null ) {
if ( is_single( 2 ) ) {
return \'\';
}
return $title;
}
add_filter( \'the_title\', \'hide_my_title\', 10, 2 );
这将在您查看ID为2的帖子时隐藏标题。请注意,如果此页面上使用了相关帖子等元素,这也可能会隐藏其他帖子的标题。