我在函数中有这个。php。如何修改它,以便在bootsrap之后加载自定义css。最小css?
function register_css() {
wp_register_style( \'bootstrap.min\', get_template_directory_uri() . \'/css/bootstrap.min.css\' );
wp_enqueue_style( \'bootstrap.min\' );
}
add_action( \'wp_enqueue_scripts\', \'register_css\' );
我发现this 但它不起作用,我对php也不太了解,但我认为它缺少wp\\U register\\u风格的部分。