接着上篇讲解了《WordPress后台禁用Google Open Sans字体,加速网站》的文章,接下来讲解下如何禁止某些还有可能拖慢网站访问速度的外部资源和表情脚本加载。
它们分别是以下这些加载项:
//禁止WordPress头部加载s.w.org
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 );
// Remove emoji script
remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
remove_action( 'wp_print_styles', 'print_emoji_styles' );
add_filter( 'emoji_svg_url', '__return_false' );
未经允许不得转载:WordPress组织 » WordPress后台禁止加载其它有可能拖慢速度的外部资源,加快访问
评论前必须登录!