升级到WordPress 4.6之后,有童鞋发现头部加载了一个:
将下面的代码添加到主题functions.php模板中:
方法一:
remove_action( ‘wp_head’, ‘wp_resource_hints’, 2 );
方法二:
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 );
方法二貌似兼容性更好些。
本文来自资源网