我建议您使用SEO插件来控制所有标题。WordPress SEO 由尤斯特是非常好的。
或者您可以将过滤器添加到wp_title
更改输出。
<?php
add_filter( \'wp_title\', \'wpse29020_fix_title\', 10, 3 );
function wpse29020_fix_title( $title, $sep, $seplocation )
{
// If this isn\'t our flavors taxonomy, just return the title
if( ! is_tax( \'flavors\' ) ) return $title;
// Get the term
$obj = get_queried_object();
// Get the terms name
$name = sanitize_term_field( \'name\', $obj->name, $obj->term_id, \'flavors\', \'display\' );
// construct the title
$title = $name . " $sep " . bloginfo( \'name\' );
return $title;
}