Skip to content

Instantly share code, notes, and snippets.

@chrisrouse
Created December 8, 2013 03:04
Show Gist options
  • Save chrisrouse/7852889 to your computer and use it in GitHub Desktop.
Save chrisrouse/7852889 to your computer and use it in GitHub Desktop.
// Add the following code to the end of functions.php in your Genesis child theme. Don't copy this line.
/** Load scripts for FitVids before closing the body tag */
add_action('genesis_after_footer', 'child_script_managment');
function child_script_managment() {
wp_enqueue_script( 'fitvids', get_stylesheet_directory_uri() . '/js/jquery.fitvids.js', array('jquery'), '', TRUE);
wp_enqueue_script( 'fitvids-xtra', get_stylesheet_directory_uri() . '/js/FitVids.js', array(), '', TRUE);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment