wordpress技巧:从google公用库载入Jquery
Google提供了大量的公用库,像jquery,zepto,swfobject等我们都可以直接从google公用库直接载入,wordpress载入Google的Jquery公用库方法如下: 在主题的functions.php文件中加入如下代码: function jquery_cdn() { if (!is_admin()) { wp_deregister_script('jquery'); wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery
暂无评论