好像最近利用wrodpress做網站博客的朋友們一直反應自己的wordpress網站越來越慢了!
反應的是wordpress的谷歌字體影響了網站的加載速度。
今天首席職業鑒黃師就教大家wordpress怎么禁用谷歌字體給網站提速!
其實方法有很多也挺簡單的,給wordpress的functions.php文件加一段代碼就可以輕松實現wordpress網站禁用谷歌字體的效果!代碼如下:
- class Disable_Google_Fonts {
- public function __construct() {
- add_filter( 'gettext_with_context', array( $this, 'disable_open_sans' ), 888, 4 );
- }
- public function disable_open_sans( $translations, $text, $context, $domain ) {
- if ( 'Open Sans font: on or off' == $context && 'on' == $text ) {
- $translations = 'off';
- } //Vevb.com
- return $translations;
- }
- }
- $disable_google_fonts = new Disable_Google_Fonts;
把代碼加入在當前主題模板下的functions.php文件中。
隨便說下:谷歌已經退出中國了~服務器都在臺灣的,這樣還被墻了~實在可惜?。∫从斜臼伦约鹤龀鲎约旱纳鷳B系統!現在國內很多東西都用到國外的服務,要是那天tc跟“挨炮”翻臉了,墻掉還是怎么辦?呵呵。
新聞熱點
疑難解答
圖片精選