如果我的订单为真,我想删除WP Yoast SEO插件标题标签。
如果是(帖子类型)问题,且此问题被标记为比删除标题更好。
if ( is_singular( 'question' ) ) {
if($question->et_best_answer){ ?> [Done] <?php the_title() } else {
add_filter('wpseo_title', '__return_empty_string'); }
}
不删除该帖子类型页面中的标题。
我尝试了这些:
remove_action( 'wp_head', '_wp_render_title_tag', 1 );
add_filter('wpseo_title', '__return_empty_string');