制止WP头部减载s.w.org
制止WP头部减载s.w?晋级到4.6版本以后,检察专客尾页源代码时,会发明多出一个,那是新版增加了dns-prefetch功用,其从s.w网站挪用心情战头像等数据,放慢专客会见速率。
不外海内不成以会见s.w,以是不单出有起到放慢做用,反而借会加缓网站会见速率,那我们便将其制止好了。
办法十分简朴,正在您专客主题的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 );
如您没有会修正,也能够联络我帮手修正!
相关信息
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|