{教程}删掉sw.org的输出

图片[1]-{教程}删掉sw.org的输出-月宅酱的博客


加了点东西后博客页面太大了,不得不进行各种优化来提升和减小页面体积,

偶然发现源代码内有 href=’//s.w.org’的标签(你可以在自己博客ctrl+u、ctrl+f搜s.w.org发现它)。

本来就没有用emoji表情了,结果它还在加载输出,无疑是拖慢速度的,我点开这个网址加载页面大概也是需要3秒钟,反正不用,干啥不删了它,多棒。


教程

主题functions.php加入下面的代码

//禁用sw.org
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 );
© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 共1条
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片
    • 头像LiarOnce0