Skip to content

Instantly share code, notes, and snippets.

@jamiemitchell
Created October 21, 2013 03:45
Show Gist options
  • Save jamiemitchell/7078376 to your computer and use it in GitHub Desktop.
Save jamiemitchell/7078376 to your computer and use it in GitHub Desktop.
Load scripts before closing the body tag in Genesis
<?php
/* Load scripts before closing the body tag
------------------------------------------------------------ */
add_action('genesis_after_footer', 'child_script_managment');
function child_script_managment() {
wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js' );
wp_register_script( 'jquery-ui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js' );
wp_enqueue_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js', array( 'jquery' ), '4.0', false );
wp_enqueue_script( 'jquery-ui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js', array( 'jquery' ), '1.9.2' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment