WordPress从 WordPress 4.6 版本开始,头部会以dns-prefetch的形式从 s.w.org 预获取表情和头像,目的是提高网页加载速度 ,但 s.w.org 国内根本无法访问。所以这个功能就显得很鸡肋。
想要禁用它也很简单,将下面的代码复制到位于主题目录functions.php文件里面就可以了。文章源自零捌陆工作室-https://www.086026.com/78.html
//移除 WordPress 头部加载 DNS 预获取(dns-prefetch)
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 );
文章源自零捌陆工作室-https://www.086026.com/78.html文章源自零捌陆工作室-https://www.086026.com/78.html 我的微信
我的微信
微信扫一扫
评论