在优化当中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');
评论区
发表新的留言
您可以留言提出您的疑问或建议。
您的留言得到回复时,会通过您填写的邮箱提醒您。