Best way to include Bootstrap in WordPress
You can add bootstrap in WordPress by following function in functions.php You can change url as you need if you have cdn. <?php /** * Enqueue scripts and styles */ function your_theme_enqueue_scripts() { // all styles wp_enqueue_style( ‘bootstrap’, get_stylesheet_directory_uri() . ‘/css/bootstrap.css’, array(), 20141119 ); wp_enqueue_style( ‘theme-style’, get_stylesheet_directory_uri() . ‘/css/style.css’, array(), 20141119 ); // all scripts … Read more