Enqueue Bootstrap CDN in WordPress

wordpress-functions
// =========================================================================// BOOTSTRAP CSS// =========================================================================functionenqueue_bootstrap_styles(){ wp_enqueue_style('bootstrap_css', '//stackpath.bootstrapcdn.com/bootstrap/4.4.0/css/bootstrap.min.css');}add_action( 'wp_enqueue_scripts', 'enqueue_bootstrap_styles');// =========================================================================// BOOTSTRAP JAVASCRIPT// =========================================================================functionenqueue_bootstrap_scripts() {  wp_enqueue_script( 'bootstrap_jquery', '//code.jquery.com/jquery-3.4.1.slim.min.js', array(), '3.3.1', true );wp_enqueue_script( 'bootstrap_popper', '//cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js', array(), '1.14.7', true );wp_enqueue_script( 'bootstrap_javascript', '//stackpath.bootstrapcdn.com/bootstrap/4.4.0/js/bootstrap.min.js', array(), '4.3.1', true );}add_action( 'wp_enqueue_scripts', 'enqueue_bootstrap_scripts');

Make Sure that, you are using the latest Bootstrap version.

Leave a comment

Your email address will not be published. Required fields are marked *