Skip to content
ABOUT US
股份公司英才联盟
东京都千代田区内幸町1-1-1 帝國飯店塔楼8F
WEBサイトを開く
add_filter( 'wp_resource_hints', 'remove_dns_prefetch', 10, 2 );
function remove_dns_prefetch( $hints, $relation_type ) {
if ( 'dns-prefetch' === $relation_type ) {
return array_diff( wp_dependencies_unique_hosts(), $hints );
}
return $hints;
}