如何从加载中删除其他CSS。它在每个页面上作为内部样式表加载。我正在这样做,但它不起作用。如果我
print_r(wp_get_custom_css());
它显示相同的css。我想禁用它以加载。
add_action( \'wp_enqueue_scripts\', \'mywptheme_child_deregister_styles\', 11 );
function mywptheme_child_deregister_styles() {
wp_dequeue_style( \'wp-custom-css\' );
}
最合适的回答,由SO网友:Sally CJ 整理而成
那个style
WordPress使用添加HTMLwp_custom_css_cb()
而且是hooked to wp_head
像这样:
add_action( \'wp_head\', \'wp_custom_css_cb\', 101 );
在文档中添加自定义/附加CSS
head
.
因此,如果您不希望发生这种情况,或者希望手动添加/加载CSS,可以将其添加到主题中functions.php
文件:
remove_action( \'wp_head\', \'wp_custom_css_cb\', 101 );