WordPress标题标签随插件更改

时间:2016-11-05 14:28:27

标签: wordpress plugins

我是插件写作,我想更改header.php 标题标记,

我该怎么做?

谢谢!

1 个答案:

答案 0 :(得分:1)

wp_title自4.4版以来已弃用。因此,我们应该使用新的过滤器pre_get_document_title。请尝试以下代码。

add_filter('pre_get_document_title', 'change_title');
function change_title($title) {
   return 'My Custom Title';
}

查看有关此挂钩的详细信息https://developer.wordpress.org/reference/hooks/pre_get_document_title/