我在中为自定义帖子类型添加了自定义标题标记header.php
如下所示
if(is_singular( \'news\' )){
global $wp_query;
$postid = $wp_query->post->ID;
echo \'<title>\'. get_the_title() .\' of \'. strip_tags(get_the_term_list( get_the_ID(), \'genre\', \'\', \' \', \'\' )) .\' read online</title>\';
}
这段代码很好用,但我不知道如何删除默认的WordPress标题标记。所以现在我所有的一条新闻都有两个标题标签。一个位于源代码上方,一个是WordPress的默认标题标记。如何禁用单个新闻的WP标题标记?随附的那个
wp_head()
?