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' );
0条评论