Child THEME CSS won't load After Bootstrap CDN
I think the CDN is causing my child theme to be delayed. Can someone tell me what I am doing wrong here?
?php
add_action('wp_enqueue_scripts', static function () {
$deps = [];
if (class_exists(\Elementor\Plugin::class)) {
$deps[] = 'elementor-frontend';
}
wp_enqueue_style('vehica', get_template_directory_uri() . '/style.css', $deps, VEHICA_VERSION);
wp_enqueue_style('vehica-child', get_stylesheet_directory_uri() . '/style.css', ['vehica']);
});
add_action('after_setup_theme', static function () {
load_child_theme_textdomain('vehica', get_stylesheet_directory() . '/languages');
});
Topic child-theme cdn Wordpress
Category Web