wordpress后台打开速度相当慢 解决办法
发布:smiling 来源: PHP粉丝网 添加日期:2014-07-23 16:34:01 浏览: 评论:0
最近确实google网站打不开了,好不容易打开也搜索不了,不论是香港的、台湾的还是美国的,放弃吧.
wordpress中使用的有些字体是需要从Google中取出的,这也导致了字体半天取不出,从而wordpress后台半天打不开,我从网上找了几种试着还可以的办法:
第一种:找到wordpress文件夹下的wp-includes,找到script-loader.php,查找fonts.googleapis.com,这是从谷歌服务器获取字体,修改为fonts.useso.com,保存,OK,查看效果.
第二种:functions.php过滤,在主题中的functions.php文件末尾加上以下代码之一即可.
1.代码一
- // Remove Open Sans that WP adds from frontend
- if (!function_exists('remove_wp_open_sans')) :
- function remove_wp_open_sans() {
- wp_deregister_style( 'open-sans' );
- wp_register_style( 'open-sans', false );
- }
- // 前台删除Google字体CSS
- add_action('wp_enqueue_scripts', 'remove_wp_open_sans');
- // 后台删除Google字体CSS ( Uncomment below to remove from admin)
- add_action('admin_enqueue_scripts', 'remove_wp_open_sans');
- endif;
2.代码二
- function remove_open_sans() {
- wp_deregister_style( 'open-sans' );
- wp_register_style( 'open-sans', false );
- wp_enqueue_style('open-sans','');
- }
- add_action( 'init', 'remove_open_sans' );
以下几种仅供参考,未进行试验.
第三种:插件过滤
1. 插件一
名称:Remove Open Sans font Link from WP core
地址:http://wordpress.org/plugins/remove-open-sans-font-from-wp-core/
简介:Installs ‘Remove Open Sans font Link from WP core’ plugin on your wordpress blog, so it will doesn’t load Open Sans font from Google fonts. 移除WP核心的谷歌字体链接.
2. 插件二
名称:Disable Google Fonts
地址:http://wordpress.org/plugins/disable-google-fonts/
简介:另一个类似的插件
正常情况下前两种足以解决问题了,尽量不用插件.
Tags: wordpress打开速度 wordpress速度慢
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)