这很可能是由于主题支持的不同。某些主题通过使用wp_title
过滤器,部分使用pre_get_document_title
. 如果你的主题中有这一行functions.php
文件:
add_theme_support(\'title-tag\');
那么您需要使用
pre_get_document_title
过滤器,如下所示:
add_filter(\'pre_get_document_title\', \'my_title\');
function my_title() {
return \'Some title\';
}
这是为更新版本的WordPress准备的。旧安装可能仍在使用旧版本
wp_title()
函数,您在问题中已经提到。