gpt4 book ai didi

php - 如何使用插件、add_filter 删除或更改 wordpress 中的 <title> 标签?

转载 作者:可可西里 更新时间:2023-10-31 22:06:31 24 4
gpt4 key购买 nike

我需要更改或删除 <title>使用插件在 wordpress 中标记
例如 <title> My old title </title> => <title> New title </title>

我试试

function plugin_title($content){
$content=str_replace('My old title','New title',$content);
return $content;
}

add_filter('wp_head','plugin_title');

//但它不起作用。任何的想法 ?

最佳答案

尝试使用 wp_title 钩子(Hook)

add_filter( 'wp_title', 'custom_title', 20 );

function custom_title( $title ) {
return str_replace('My old title', 'New title', $title);
}

关于php - 如何使用插件、add_filter 删除或更改 wordpress 中的 &lt;title&gt; 标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7348004/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com