升级到WordPress 4.6之后,头部加载了一个:

<link rel=’dns-prefetch’ href=’//s.w.org’>

原因分析:
WordPress在头部添加dns-prefetch,是为了从s.w.org预获取表情和头像,目的是提高网页加载速度 ,但s.w.org国内根本无法访问,什么预获取、什么提高速度,都是泡影,不仅没用处,反而可能会影响速度,那就禁止它。
解决方法:
将下面的代码添加到主题functions.php模板中(路径:wp-content\themes\twentyfifteen\fuctions.php):
方法一

  1. remove_action( ‘wp_head’, ‘wp_resource_hints’, 2 );

方法二

  1. function remove_dns_prefetch( $hints$relation_type ) {
  2. if ( ‘dns-prefetch’ === $relation_type ) {
  3. return array_diff( wp_dependencies_unique_hosts(), $hints );
  4. }
  5. return $hints;
  6. }
  7. add_filter( ‘wp_resource_hints’, ‘remove_dns_prefetch’, 10, 2 );

方法二兼容性更好。
附带一个禁止加载表情代码

  1. // Remove emoji script
  2. remove_action( ‘wp_head’, ‘print_emoji_detection_script’, 7 );
  3. remove_action( ‘wp_print_styles’, ‘print_emoji_styles’ );
  4. add_filter( ’emoji_svg_url’, ‘__return_false’ );
声明:
本站所有文章,如无特殊说明或标注,均为本站原创发布。
任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。
如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。