在我的wordpress子主题css文件加载主主题css之前.
我的孩子主题css functions.PHP文件如下
function my_theme_enqueue_styles(){
wp_enqueue_style( 'bootstrap',get_template_directory_uri() . '/../enfold-child/plugins/bootstrap/css/bootstrap.min.css' );
}
add_action( 'wp_enqueue_scripts','my_theme_enqueue_styles' );
最佳答案
添加优先级.这里99很高,所以它可能会持续一段时间,但有些插件可能会以更高的优先级添加css,尽管这种情况很少见.
原文链接:https://www.f2er.com/css/426984.htmlfunction my_theme_enqueue_styles(){
wp_enqueue_style( 'bootstrap','my_theme_enqueue_styles',99 );
见:https://developer.wordpress.org/reference/functions/add_action/