2222 发表于 2008-11-27 14:25:20

去掉WP的标题前空格代码

Wordpress中Title前面出现空格的情况,可以用下面的方法解决:

在模板的functions.php文件中,插入以下代码:

// Removes the white spaces from wp_title
function af_titledespacer($title) {
return trim($title);
}
add_filter('wp_title', 'af_titledespacer');
页: [1]
查看完整版本: 去掉WP的标题前空格代码