wp_dequeue_style似乎不起作用

时间:2017-08-07 12:35:10

标签: wordpress

我构建了一个wordpress主题,并且已经在我的style.css插件的自定义类中创建了:Social Count plus

该插件使用自称为counter.css的css的问题是我需要做的是阻止包含此css,因此我已在functions.php中插入此行:

wp_dequeue_style( 'counter' );

遗憾的是,在网站重新加载过程中甚至还包含了样式。我究竟做错了什么?  感谢。

2 个答案:

答案 0 :(得分:3)

试试这个:

add_action('wp_enqueue_scripts', function() {
    wp_dequeue_style('social-count-plus');
    wp_deregister_style('social-count-plus');
});

答案 1 :(得分:0)

只需保留counter.css文件,但要么将其清空或将所有内容评论出来。它无法加载那些不存在的东西。但请注意,更新到该插件可能会添加该文件的内容。