Skip to content

Instantly share code, notes, and snippets.

@anastransvelo
Forked from mrbobbybryant/gist:83c4a076da6dd67de3da
Last active March 20, 2019 19:25
Show Gist options
  • Save anastransvelo/3f0c7d7e336f01d3b60efffc44780e0d to your computer and use it in GitHub Desktop.
Save anastransvelo/3f0c7d7e336f01d3b60efffc44780e0d to your computer and use it in GitHub Desktop.
Properly enqueue bootstrap into WordPress
<?php
/**
* Enqueue scripts and styles
*/
function electro_child_enqueue_scripts() {
wp_enqueue_style( 'bootstrap', get_stylesheet_directory_uri() . '/css/bootstrap.css', array(), 20141119 );
}
add_action( 'wp_enqueue_scripts', 'electro_child_enqueue_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment