【干货】wordpress函数实现屏蔽s.w.org提升网站速度

来源:互联网 发布:python static method 编辑:程序博客网 时间:2024/06/05 00:33

本篇将给大家分享wordpress函数实现屏蔽s.w.org提升网站速度

今天 在打开网站的时候,看到360浏览器总是在载入s.w.org,图标的地方也一直在转圈,转了好一会之后才显示出来,之前也看到过这个事情,但是也一直没有在意,今天感觉到很影响网站速度,必须得去掉,于是就在网上找到了一段代码,放在了网站functions.php里面,果然现象没有了,网站的速度提升了很多。接下来给大家贴代码

function remove_dns_prefetch( $hints, $relation_type ) {if ( 'dns-prefetch' === $relation_type ) {return array_diff( wp_dependencies_unique_hosts(), $hints );}return $hints;}add_filter( 'wp_resource_hints', 'remove_dns_prefetch', 10, 2 );