本帖最後由 hardrock 於 2014-12-5 23:58 編輯
# W6 p3 z' n+ s( c- O( t# k1 a! y( r7 j$ H
用了以下代碼後,我上自己網站慢的問題解決了,但是我網站的訪客是美國人,他們訪問我網站會不會變慢,他們看網站的字體格局會不會改變?
( b. ~% F* p( ^9 Z6 ` y7 \4 F* k- D+ K0 l$ ^" i. {5 |
http://www.skyshe.cn/2014/08/26/80.html
! }7 x& p, y0 L& S8 P- g* uWordPress原來字體使用的是Google Fonts Open Sans,在國內訪問不穩定所以會延時,解決方法很簡單:直接添加到主題的functions.php中即可禁用後台Open Sans:
6 }# t; u# ]' G# _$ ]4 V1 s0 C9 T/ ] a6 _: q4 M* n9 ^
[mw_shl_code=php,true]/** 禁用Open Sans */8 N) R; |6 d5 Y2 o2 Q9 u
class Disable_Google_Fonts {
0 d; K. Z8 h0 m9 F+ o public function __construct() {. t# C8 p L3 N' b* O& h7 G
add_filter( 'gettext_with_context', array( $this, 'disable_open_sans' ), 888, 4 );$ v: P0 l E& B& M! T" U }0 n" }
}# B# f3 w+ ~: T( U/ d1 a
public function disable_open_sans( $translations, $text, $context, $domain ) {! C& s: k& g) d. a/ C
if ( 'Open Sans font: on or off' == $context && 'on' == $text ) {
- x J2 W p/ [7 q/ { $translations = 'off';
! P! v2 s2 _! n3 z- o- q4 b4 p }: s* g2 k2 f; P, T9 ?
return $translations;
# W$ p2 Z; _4 S }% ~: d+ ?1 l$ C1 P0 {3 @) H8 p
}
1 K+ H# n2 B0 k- s% R4 E$disable_google_fonts = new Disable_Google_Fonts;[/mw_shl_code]; M- y3 P) ?9 ?5 k. m4 J
C, }. N' L! q y% H1 C+ \5 J0 i& P* v: A8 K! g
|