Advertisement
sayful

WP Calling jquery in wp theme

Feb 19th, 2014
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.67 KB | None | 0 0
  1. /*=======================================
  2. Proper way to enqueue scripts and styles
  3. =======================================*/
  4. function themename_scripts(){
  5.     if( !is_admin() ) {
  6.         wp_enqueue_script('jquery');
  7.         wp_enqueue_script( 'theme_name-bootstrap', get_template_directory_uri() . '/js/bootstrap.min.js', array('jquery') );
  8.  
  9.         wp_enqueue_style( 'theme_name-style', get_stylesheet_uri() );
  10.         wp_enqueue_style( 'theme_name-custom_style', get_template_directory_uri() . '/css/custom-style.css',  array( 'theme_name-style' ));
  11.     }
  12.     if ( is_singular() ) wp_enqueue_script( 'comment-reply' );  //wordpress comment style
  13. }
  14. add_action( 'wp_enqueue_scripts', 'theme_name_scripts' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement