Created
July 30, 2015 13:18
-
-
Save jbma/a8ebf0aee691669ecd47 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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