wordpress在使用了国外主题的朋友,在浏览网站时非常的慢,多数是谷歌服务器被屏蔽从而无法加载谷歌字体造成的。
一、首先建议采用插件的方法,简单易用,建议以下三个插件全部用上。
Disable Google Fonts:https://wordpress.org/plugins/disable-google-fonts/
googlefonts to 360:http://baiye.us/wp-content/uploads/2014/06/googlefontsto360.zip
Useso take over Google:https://wordpress.org/plugins/useso-take-over-google/
二、其次必须修改这个文件 wp-includesscript-loader.PHP,wordpress4.31大约在689行左右,将Google免费字体库的域名修改为:fonts.useso.com ,自动将Google免费字体库的字体资源缓存在360网站卫士全国的CDN节点上。
三、以下代码添加到主题的functions.PHP 文件中。
/**
* 禁用谷歌字体
*/
function aldehyde_replace_open_sans() {
wp_deregister_style('open-sans');
wp_register_style( 'open-sans','//fonts.useso.com/css?family=Open+Sans:300italic,400italic,600italic,300,400,600' );
wp_enqueue_style( 'open-sans');
}
//前台加载;
add_action( 'wp_enqueue_scripts','aldehyde_replace_open_sans' );
//后台加载
add_action('admin_enqueue_scripts','aldehyde_replace_open_sans');
原文链接:https://www.f2er.com/wordpress/422927.html