您可以设置priority 在挂钩中。Priority 是挂钩中的第三个参数。在以下示例中,wp_enqueue_scripts
优先级为99,高于正常优先级。默认优先级为10。所以它最终会加载
function load_last_style() {
wp_enqueue_style( \'style-name\', get_stylesheet_uri() );
}
add_action( \'wp_enqueue_scripts\', \'load_last_style\', 99 );