WordPress更新到6.1版本后,WordPress会自动生成并在前端head中引用一个ID为classic-theme-styles-css的classic-themes.min.css样式文件,文件里包含了一个class选择器.wp-block-button__link的样式代码,看上去似乎是作用于古腾堡区块之类的,如果觉得自己用不到,或者感觉到碍眼,可以通过wp_enqueue_scripts钩子删除。
生成的调用代码如下:
1 | <link rel='stylesheet' id='classic-theme-styles-css' href='http://www.boke8.net/wp-includes/css/classic-themes.min.css?ver=6.2' type='text/css' media='all' /> |
删除classic-theme-styles-css的方法:
在主题的functions.php文件添加下面的代码
1 2 3 4 5 | function remove_block_library_css() { wp_deregister_style('classic-theme-styles'); wp_dequeue_style('classic-theme-styles'); } add_action( 'wp_enqueue_scripts', 'remove_block_library_css', 100 ); |
保存即可。