如何在wordpress上设置单页标题,例如在这张图片中,我想更改/添加文本“主题预览”?
如何装扮标题单页
1 个回复
SO网友:Unnikrishnan R
您可以对此使用“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"
结束