Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. function theme_add_bootstrap() {
  2. wp_enqueue_style( 'bootstrap-css', get_template_directory_uri() . '/css/bootstrap.min.css' );
  3. wp_enqueue_style( 'style-css', get_template_directory_uri() . '/style.css' );
  4. wp_enqueue_script( 'jquery-js', get_template_directory_uri() . '/js/jquery-1.11.3.min.js', array(), '1.11.3', true ); }
  5. wp_enqueue_script( 'bootstrap-js', get_template_directory_uri() . '/js/bootstrap.min.js', array( 'jquery-js' ), '3.3.4', true );
  6.  
  7. add_action( 'wp_enqueue_scripts', 'theme_add_bootstrap' );
  8.  
  9. // Register custom navigation walker
  10. require_once('wp_bootstrap_navwalker.php');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement