小编Dar*_*cyk的帖子

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

我需要<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');
Run Code Online (Sandbox Code Playgroud)

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

php wordpress plugins title add-filter

4
推荐指数
1
解决办法
7414
查看次数

标签 统计

add-filter ×1

php ×1

plugins ×1

title ×1

wordpress ×1