我想我会发布我正在使用的变通方法,直到我知道问题的答案。。。
我的解决方法是:
剪切(&L);将插件中的CSS代码粘贴到主题中(即。style.css
) 并根据需要进行修改告诉主题通过在中取消注册来阻止插件输出样式表functions.php
:要输入的代码functions.php
:
add_action( \'wp_print_styles\', \'my_deregister_styles\', 100 );
function my_deregister_styles() {
wp_deregister_style( \'bitvol_galleria_css\' );
}
在某些方面,这种变通方法可能是更好的解决方案?(因为通过减少标题部分中包含的CSS资源的数量,网站性能会更好)。