加了点东西后博客页面太大了,不得不进行各种优化来提升和减小页面体积,
偶然发现源代码内有 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
- 最新
- 最热
只看作者