WordPress的默认Title生成后,前面会出现空格的情况,如<title> 何昌全博客_关注互联网和SEO的IT原创博客</title>,可以用下面的方法解决。
在模板的functions.php文件中,插入代码:
// Removes the white spaces from wp_title
function af_titledespacer($title) {
return trim($title);
}
add_filter(‘wp_title’, ‘af_titledespacer’);
或者
add_filter(‘wp_title’, create_function(‘$a, $b’,’return str_replace(” $b “,””,$a);’), 10, 2);
两份代码都是有效的,结果为<title>何昌全博客_关注互联网和SEO的IT原创博客</title>。有些模板中没有这个文件,自己新建一个放入上面的代码。