/**
* Enqueue stylesheet before others
*/
class EnqueueStylesheetEarly {
function __construct() {
add_action( \'wp_enqueue_scripts\', [ $this, \'load_before_other_stylesheets\' ], 5 );
}
/**
* Register and enqueue stylesheet
*/
function load_before_other_stylesheets() {
wp_register_style(
\'bootstrap-css\',
plugin_dir_url( __FILE__ ) . \'bootstrap.min.css\',
[],
\'3.3.7\'
);
wp_enqueue_style( \'bootstrap-css\' );
}
}
然后,您可以将其与“plugin”中的其他前端类一起加载。php“像这样…”。。。
if ( ! is_admin() ) {
require \'class-enqueue-stylesheet-early.php\';
}
按5个优先顺序,这应该可以解决您的问题。在此之前通常加载的唯一内容是WordPress SEO JSON-LD脚本和元数据。