Removing title from page

时间:2011-12-16 作者:James

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 } ?>
但我不想改变模板

1 个回复
SO网友:Box

用CSS隐藏标题怎么样?

.entry-title {
  display: none;
}

结束

相关推荐

Ajax, filters and shortcodes

您能理解为什么我无法在ajax帖子包含中应用短代码过滤器吗?让我更好地解释一下:我已经设法在另一篇文章中包含一篇文章,通过admin-ajax.php, 正如著名的5 tips.很明显,我不想显示快捷码标签,也不想去掉它们,所以我在回应do_shortcode($post->post_content)此时,虽然我正在运行“Cleaner gallery”插件,但post gallery会被渲染,但未被过滤add_filter( \'post_gallery\', \'cleaner_gallery\