Wordpress中Title前面出現空格的情況,可以用下面的方法解決:
- s9 n7 ]" o6 W5 l0 e3 ? L7 k3 k1 `8 A. d' a" X' p4 C
在模板的functions.php文件中,插入以下代碼:6 `- J! h& f4 |' m) L& D. Y
8 j9 b5 S! n5 ?9 ?1 J// Removes the white spaces from wp_title
" j. h, r6 M; H3 y5 O* Rfunction af_titledespacer($title) {
( N/ A/ q6 K0 H" y* f return trim($title);
8 o L2 D, A! w8 Y1 \* T- j: K}0 ]2 N2 G4 k2 P5 A
add_filter('wp_title', 'af_titledespacer'); |
評分
-
查看全部評分
|