Skip to content

Instantly share code, notes, and snippets.

@freezvd
Forked from jamiemitchell/functions.php
Last active August 29, 2015 14:06
Show Gist options
  • Save freezvd/2122d5d0be1f4787ca22 to your computer and use it in GitHub Desktop.
Save freezvd/2122d5d0be1f4787ca22 to your computer and use it in GitHub Desktop.
<?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