我们在使用WordPress程序的时候会发现,WordPress网站会加载很多外部资源,导致网站加载速度很慢,为了加快访问,我们一起了解一下WordPress后台如何禁止加载会影响网站速度的外部资源?
它们分别是以下这些加载项:
//禁止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’ );
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容