去掉WordPress title中文章标题前的»

十二 15th, 2011 | 17 views
1

Comments

WordPress 的标题前的»字符需要找到 wp-includes目录里的general-template.php文件

function wp_title($sep = ‘»’, $display = true, $seplocation = ”) {
//上面是wp-includes目录里的general-template.php文件的第412行代码
//修改为
function wp_title($sep = ”, $display = true, $seplocation = ”) {
//就可以了

One Response to “去掉WordPress title中文章标题前的»”