走啊走
加油

wp_dequeue_style移除head头部样式文件的用法

服务器价格表

wp_dequeue_style移除head头部样式文件,比如样式文件的id为wp-block-library-css,不需要这个文件的话可以直接用wp_dequeue_style来移除样式文件。

add_action('wp_enqueue_scripts','removethe_styles', 11);
function removethe_styles() {
wp_dequeue_style('wp-block-library');
}