Wordpress中Title前面出現空格的情況,可以用下面的方法解決:
& X/ Q1 H' s$ e' t1 W: y# Q/ p/ ?+ L3 x
在模板的functions.php文件中,插入以下代碼:* x8 X$ P# b0 ]6 L2 E
' N6 n6 G, B! a# z" `// Removes the white spaces from wp_title
$ }0 ?+ C3 J; c" Cfunction af_titledespacer($title) {
+ v. R- a/ k& w2 ` return trim($title);
5 m: B+ ]' e( a7 |3 C( k}$ x/ a( z7 D4 z
add_filter('wp_title', 'af_titledespacer'); |
評分
-
查看全部評分
|