Advertisement
rexcoder

WP Enqueue Script

Jan 3rd, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.55 KB | None | 0 0
  1. /*FROM UNDERSCORE THEME*/
  2. function myrex_scripts() {
  3.     wp_enqueue_style( 'myrex-style', get_stylesheet_uri() );
  4.  
  5.     wp_enqueue_script( 'myrex-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120206', true );
  6.  
  7.     wp_enqueue_script( 'myrex-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20130115', true );
  8.  
  9.     if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
  10.         wp_enqueue_script( 'comment-reply' );
  11.     }
  12. }
  13. add_action( 'wp_enqueue_scripts', 'myrex_scripts' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement