Skip to content

Instantly share code, notes, and snippets.

@jbma
Created July 30, 2015 13:18
Show Gist options
  • Save jbma/a8ebf0aee691669ecd47 to your computer and use it in GitHub Desktop.
Save jbma/a8ebf0aee691669ecd47 to your computer and use it in GitHub Desktop.
<?php
/**
* Proper way to enqueue scripts and styles
*/
function __rocket_theme_scripts_to_enqueue() {
wp_enqueue_script( 'pkgd', get_stylesheet_directory_uri() . '/js/masonry.pkgd.min.js', array(), '1.0.0', false );
wp_enqueue_script( 'flexslider', get_stylesheet_directory_uri() . '/js/jquery.flexslider-min.js', array('jquery'), '1.0.0', false );
wp_enqueue_script( 'main', get_stylesheet_directory_uri() . '/js/main.js', array(), '1.0.0', false );
}
add_action( 'wp_enqueue_scripts', '__rocket_theme_scripts_to_enqueue' );
add_action( 'wp_enqueue_scripts', 'theme_name_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment