WordPress怎么提高运行速度_WordPress 禁止加载Google Front教程,很多朋友都想知道如何才能够提高WordPress的运行速度,其实就是去除WordPress的谷歌字体,就能让你打开WordPress的速度变的稍微快点,今天119下载站就给大家介绍3种方法禁用谷歌字体。一起来看看吧。
谷歌字体是只有正式用户登录时才会加载的 访客不会自动加载 由于国内环境问题导致加载的时候会比较缓慢 导致网站打开也会非常缓慢 所以就需要去掉这项功能来使网站打开快一点。
方法一:
在主题的functions.php文件中加入以下代码
//禁用Google Fonts function fanly_disable_google_fonts($translations, $text, $context, $domain ) { $google_fonts_contexts = array('Open Sans font: on or off','Lato font: on or off','Source Sans Pro font: on or off','Bitter font: on or off'); if( $text == 'on' && in_array($context, $google_fonts_contexts ) ){ $translations = 'off'; } return $translations; }
方法二推荐使用:
最近又发现一个新方式,顺便贴出来吧!
在主题的functions.php文件中加入以下代码
//禁用Google Fonts function coolwp_remove_open_sans_from_wp_core() { wp_deregister_style( 'open-sans' ); wp_register_style( 'open-sans', false ); wp_enqueue_style('open-sans',''); } add_action( 'init', 'coolwp_remove_open_sans_from_wp_core' );
第三种方法:
通常wordpress主题默认加载谷歌字体。
在项目文件中搜索fonts.googleapis.com..
把https://fonts.googleapis.com/css 这行代码注释掉即可
以上就是119下载站今天分享的“WordPress怎么提高运行速度_WordPress 禁止加载Google Front教程”的全部内容了,关于去除谷歌字体的3种教程都在这里了,亲测快了不少。