WordPress在头部添加dns-prefetch,应该是为了从s.w.org预获取表情和头像,目的是提高网页加载速度 ,但s.w.org国内根本无法访问,什么预获取、什么提高速度,都是假的,不仅没用处,反而可能会影响WordPress博客速度,那就禁止它。将下面的代码添加到WordPress主题functions.php文件中
提供2种代码解决办法,为了防止不兼容情况,第2种兼容WordPress博客情况较好
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 );
禁止WordPress站点加载表情代码
禁止加载emoji表情对WordPress站点速度优化很好
remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
remove_action( 'wp_print_styles', 'print_emoji_styles' );
add_filter( 'emoji_svg_url', '__return_false' );