移除wordpress的global-styles的css样式输出
把下面代码加到 functions.php文件
//移除WP核心的global-styles的输出
add_action( 'wp_loaded', function() {
remove_action( 'wp_enqueue_scripts', 'wp_enqueue_global_styles' );
remove_action( 'wp_footer', 'wp_enqueue_global_styles', 1 );
}, 20 );


