我想隐藏特定帖子的内容,以免显示出来。remove_post_type_support
似乎不起作用。
add_action(\'template_redirect\',array($this,\'hide_post_contents\'));
public funcion hide_post_contents()
{
if(is_single(3))
{
remove_post_type_support( \'post\', \'title\' );
}
}