wordpress后台加载ajax.googleapis.com导致打开速度很慢的解决方案
发布:smiling 来源: PHP粉丝网 添加日期:2014-11-21 10:16:26 浏览: 评论:0
打开wordpress后台,发现很卡,通过开发者工具看到是因为加载http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/smoothness/jquery-ui.css这个元素导致的.
- <link rel='stylesheet' id='jquery-ui-smoothness-css' href='http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/smoothness/jquery-ui.css' type='text/css' media='all'/>
解决方案:
在functions.php里面添加如下代码:
- function hc_cdn_callback($buffer) { return str_replace('googleapis.com', 'useso.com', $buffer); } function hc_buffer_start() { ob_start("hc_cdn_callback"); } function izt_buffer_end() { ob_end_flush(); } add_action('init', 'hc_buffer_start'); add_action('shutdown', 'hc_buffer_end');//开源软件:phpfensi.com
Tags: wordpress加载 ajax googleapis com
相关文章
- ·解决wordpress加载缓慢的问题(2015-09-24)
- ·WordPress正确加载 Javascript 和 CSS的方法总结(2015-10-15)
- ·使用PHP+AJAX让WordPress动态加载文章的教程(2021-06-29)
- ·深入解析WordPress中加载模板的get_template_part函数(2021-07-05)
- ·WordPress中Ajax评论分页实现方法(2014-03-19)
- ·使用wordpress自带ajax方法(2014-03-23)
- ·WordPress中利用admin-ajax.php实现Ajax功能(2014-06-20)
- ·WordPress Ajax 提交评论的实现思路与方法(2014-06-21)
- ·Wordpress中AJAX方法使用详解(2015-05-07)
- ·WordPress博客实现Ajax评论分页教程(2015-05-07)
- ·WordPress中使用AJAX的几个问题总结(2015-10-15)
- ·wordpress移除google字体(googleapis.com)(2014-10-17)
- ·WordPress常用函数-wp_transition_comment_status()教程指南(2014-04-25)
- ·WordPress常用函数-clean_comment_cache()教程(2014-04-25)
- ·WordPress常用函数-get_comment_author()教程(2014-04-25)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)