一些插件还具有内嵌CSS。检查页面的源代码。无论如何,你有几种方法来解决这个问题。
1.使用(!important;)CSS中的属性。
p { color: #000000 !important; }
2。添加一个函数以停用插件css
add_action( \'wp_print_styles\', \'k99_deregisterr_plugin_css\', 100 );
function k99_deregisterr_plugin_css() {
wp_deregister_style( \'name of plugin style\' );
// add here more lines to deregister other css ...
}
2。我的解决方案通常是将所有插件的样式表css复制到我自己的css中,然后删除或重命名它(或取消注册——见上文)。
有一个统一的css也可以节省http请求。
(但这并不是所有生产网站的解决方案,因为客户端触发的升级可能会导致问题。)