Created
December 8, 2013 03:04
-
-
Save chrisrouse/7852889 to your computer and use it in GitHub Desktop.
This file contains 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
// 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