检查主题(header.php
). 如果它使用类似的内容:
<title><?php wp_title( \'|\', true, \'right\' ); ?></title>
您可以使用此筛选器:
add_filter( \'wp_title\', \'wpse104667_wp_title\' );
function wpse104667_wp_title( $title ) {
global $post;
if(
is_singular()
&& !is_front_page()
&& !is_home()
&& !is_404()
&& !is_tag()
)
$new_title = get_the_title($post->ID) ;
return $new_title;
}
EDIT: add conditional tags to avoid bad conflicts