以上看起来是正确的,但是,您需要通过添加bootstrap-min
第三个dependencies参数的句柄。
function register_css() {
wp_register_style( \'bootstrap-min\', get_template_directory_uri() . \'/css/bootstrap.min.css\' );
wp_register_style( \'custom-css\', get_template_directory_uri() . \'/css/custom.min.css\', \'bootstrap-min\' );
wp_enqueue_style( \'bootstrap-min\' );
wp_enqueue_style( \'custom-css\' );
}
add_action( \'wp_enqueue_scripts\', \'register_css\' );
请参见
wp_register_style 更多信息。
或者,如果您知道需要从回调函数中立即将文件排队,可以使用wp_enqueue_style
就像wp_register_style
, 请参见:wp_enqueue_style