现在我想到了两种不同的方法-
一种方法是使用ultimate-style-min-css
作为子主题的依赖项style.css
-
/**
* Say this below function is your theme enqueue
*/
function the_dramatist_child_theme_scripts(){
wp_enqueue_style (\'your-child-theme-css\',\'YOUR CSS URL HERE\', array( \'ultimate-style-min-css\' ), null, \'all\');
}
add_action(\'wp_enqueue_scripts\',\'the_dramatist_child_theme_scripts\');
另一个将使用
wp_dequeue_style
首先,将子主题样式与
ultimate-style-min-css
作为依赖项-
/**
* Here we first dequeue the style and then we\'ll enqueue the child theme style again with ultimate-style-min-css as a dependency.
*/
add_action( \'wp_enqueue_scripts\', \'ross_north_child_theme_scripts\' );
function ross_north_child_theme_scripts() {
wp_dequeue_style( \'houzez-style-css\' );
wp_enqueue_style( \'houzez-style-css\', get_stylesheet_directory_uri() . \'/style.css\', array(\'ultimate-style-min-css\' ), null, \'all\' );
}
问题更新后的更新。
我认为最后一种方法是,如果您的子主题样式表在wp_head
如果优先级低于插件样式表的优先级,那么解决方案就是使用相同的优先级wp_head
钩子,插件样式表的优先级较低。
希望以上帮助。