标题由主题中的某个内容或附加到wp_title
滤器您可以通过使用相同的挂钩和稍后执行的不同优先级来进一步过滤或完全覆盖该值。
// add a filter at priority 999 so it will presumably run last
add_filter( \'wp_title\', \'my_wp_title\', 999 );
function my_wp_title( $title ){
// use the post to do things like get_the_title( $post->ID );
global $post;
// $title will be the current title if you want to str_replace() or something
$title = "The new title";
// return the title
return $title;
}