在优化当中dns-prefetch对网页预获取,在提高大型网站浏览速度方面有帮助。
在wordpress中的s.w.org指向的是wordpress的国外官方网站,这对于我们来说毫无用处。
wordpress中想要去除很简单,在function中添加如下代码即可:

function disable_wp_head_items()
{
    remove_action('wp_head', 'wp_resource_hints', 2);
}
add_action('init', 'disable_wp_head_items');