kalponikoronno

Proper way to enqueue scripts and styles

Feb 20th, 2015
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. /**
  2.  * Proper way to enqueue scripts and styles
  3.  */
  4. function theme_name_scripts() {
  5.     wp_enqueue_style( 'style-name', get_stylesheet_uri() );
  6.     wp_enqueue_script( 'script-name', get_template_directory_uri() . '/js/example.js', array(), '1.0.0', true );
  7. }
  8.  
  9. add_action( 'wp_enqueue_scripts', 'theme_name_scripts' );
Advertisement
Add Comment
Please, Sign In to add comment