Wordpress中Title前面出現空格的情況,可以用下面的方法解決:
6 s( }1 S9 F/ J; U9 ~! A2 V- N3 l' _) z) t' {" L! O9 V
在模板的functions.php文件中,插入以下代碼:6 ^' b9 k4 ~2 k* ~
/ k B b& U# Z i
// Removes the white spaces from wp_title
+ h) D, O* w0 W; H/ e& Xfunction af_titledespacer($title) {; C5 [0 I8 C5 F7 C
return trim($title);7 l; [: J" x" a4 k$ P) _
}+ A c( T6 ^2 [, N7 S3 w
add_filter('wp_title', 'af_titledespacer'); |
評分
-
查看全部評分
|