解决由于无法加载 Google Fonts 导致 WordPress 后台慢方法
Tag: google , Homezz , php , wordpress | Categoris: Wordpress研究 | Date: 2014-08-27
方法一:安装插件 Replace Google Fonts,下载地址:http://www.nidongde.com/blog/137.html
方法二:编辑源文件,打开/wp-includes/script-loader.php 大概602行左右 ,fonts.googleapis.com 换成 fonts.useso.com
方法三:在主题模板的 functions.php 中添加下述代码
if (!function_exists('remove_wp_open_sans')) {
function remove_wp_open_sans() {
wp_deregister_sty......