@@ -46,19 +46,19 @@ function bootstrap_theme_setup() {
4646function bootstrap_scripts () {
4747 if ( \WP_Bootstrap_Blocks \Settings::is_bootstrap_5_active () ) {
4848 if ( \WP_Bootstrap_Blocks \Settings::is_css_grid_enabled () ) {
49- wp_enqueue_script ( 'popper.js ' , 'https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.3 /dist/umd/popper.min.js ' , array (), '2.9 .2 ' , true );
50- wp_enqueue_style ( 'bootstrap5-styles ' , get_template_directory_uri () . '/styles .css ' , array (), '5.1.0 ' );
51- wp_enqueue_script ( 'bootstrap5-scripts ' , 'https://cdn.jsdelivr.net/npm/bootstrap@5.1.0 /dist/js/bootstrap.min.js ' , array ( 'popper.js ' ), '5.1.0 ' , true );
49+ wp_enqueue_script ( 'popper.js ' , 'https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2 /dist/umd/popper.min.js ' , array (), '2.10 .2 ' , true );
50+ wp_enqueue_style ( 'bootstrap5-styles ' , get_template_directory_uri () . '/bootstrap-with-cssgrid .css ' , array (), '5.1.3 ' );
51+ wp_enqueue_script ( 'bootstrap5-scripts ' , 'https://cdn.jsdelivr.net/npm/bootstrap@5.1.3 /dist/js/bootstrap.min.js ' , array ( 'popper.js ' ), '5.1.3 ' , true );
5252 } else {
53- wp_enqueue_script ( 'popper.js ' , 'https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.3 /dist/umd/popper.min.js ' , array (), '2.9 .2 ' , true );
54- wp_enqueue_style ( 'bootstrap5-styles ' , 'https://cdn.jsdelivr.net/npm/bootstrap@5.1.0 /dist/css/bootstrap.min.css ' , array (), '5.1.0 ' );
55- wp_enqueue_script ( 'bootstrap5-scripts ' , 'https://cdn.jsdelivr.net/npm/bootstrap@5.1.0 /dist/js/bootstrap.min.js ' , array ( 'popper.js ' ), '5.1.0 ' , true );
53+ wp_enqueue_script ( 'popper.js ' , 'https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2 /dist/umd/popper.min.js ' , array (), '2.10 .2 ' , true );
54+ wp_enqueue_style ( 'bootstrap5-styles ' , 'https://cdn.jsdelivr.net/npm/bootstrap@5.1.3 /dist/css/bootstrap.min.css ' , array (), '5.1.3 ' );
55+ wp_enqueue_script ( 'bootstrap5-scripts ' , 'https://cdn.jsdelivr.net/npm/bootstrap@5.1.3 /dist/js/bootstrap.min.js ' , array ( 'popper.js ' ), '5.1.3 ' , true );
5656 }
5757 } else {
58- wp_enqueue_script ( 'jQuery ' , 'https://code.jquery.com/ jquery- 3.5.1.slim.min.js ' , array (), '3.5.1 ' , true );
58+ wp_enqueue_script ( 'jQuery ' , 'https://cdn.jsdelivr.net/npm/ jquery@ 3.5.1/dist/jquery .slim.min.js ' , array (), '3.5.1 ' , true );
5959 wp_enqueue_script ( 'popper.js ' , 'https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js ' , array (), '1.16.1 ' , true );
60- wp_enqueue_style ( 'bootstrap4-styles ' , 'https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/ css/bootstrap.min.css ' , array (), '4.5.0 ' );
61- wp_enqueue_script ( 'bootstrap4-scripts ' , 'https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/ js/bootstrap.min.js ' , array ( 'jQuery ' , 'popper.js ' ), '4.5.0 ' , true );
60+ wp_enqueue_style ( 'bootstrap4-styles ' , 'https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/ css/bootstrap.min.css ' , array (), '4.6.1 ' );
61+ wp_enqueue_script ( 'bootstrap4-scripts ' , 'https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/ js/bootstrap.min.js ' , array ( 'jQuery ' , 'popper.js ' ), '4.6.1 ' , true );
6262 }
6363}
6464add_action ( 'wp_enqueue_scripts ' , 'bootstrap_scripts ' );
0 commit comments