您可以对此使用“the\\u title”筛选器。
http://codex.wordpress.org/Function_Reference/the_title
add_filter(\'the_title\',\'callbackfunction\');
function callbackfunction($data){
global $post;
$new_title = "new page title"; //You can set dynamic title from $post
return $new_title;
}
如果您只想更改网站标题,可以在后端本身进行更改
"Settings->General->Site Title"