Wordpress中Title前面出現空格的情況,可以用下面的方法解決:. B+ s v" s i
" l2 k- |# Q* g# q3 n5 h
在模板的functions.php文件中,插入以下代碼:* A* K2 m) |. U3 h- O' {5 `
7 G/ |4 S- h% e// Removes the white spaces from wp_title
" v$ H1 ^2 N7 } `' u4 b. d1 L: ?/ jfunction af_titledespacer($title) {! F. y$ v8 R& k4 t+ v
return trim($title);4 d' ~0 U$ r. n# {7 l- n4 T
}: x+ f" I, ^% z6 d% }
add_filter('wp_title', 'af_titledespacer'); |
評分
-
查看全部評分
|