Hello尝试使用以下代码从静态首页中删除标题在我的函数中(不起作用)。php
function remove_page_title() { if (is_front_page() )
{
add_filter( \'the_title\', \'__return_false\' );
}}
有什么遗漏吗?提前感谢PS我知道我可以用
<?php if(!is_front_page()) { ?><h2><?php the_title(); ?></h2><?php } ?>
但我不想改变模板