I need change or remove 开发者_如何学Python<title>
tag in wordpress using plugin
<title> My old title </title>
=> <title> New title </title>
I try it
function plugin_title($content){
$content=str_replace('My old title','New title',$content);
return $content;
}
add_filter('wp_head','plugin_title');
// but it doesn't work . Any idea ?
Try using the wp_title hook
add_filter( 'wp_title', 'custom_title', 20 );
function custom_title( $title ) {
return str_replace('My old title', 'New title', $title);
}
精彩评论