我需要使用插件更改或删除wordpress中的<title>
标记
例如<title> My old title </title>
=&gt; <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');
//但它不起作用。任何的想法 ?
答案 0 :(得分:8)
尝试使用wp_title hook
add_filter( 'wp_title', 'custom_title', 20 );
function custom_title( $title ) {
return str_replace('My old title', 'New title', $title);
}