Skip to content

Instantly share code, notes, and snippets.

@loorlab
Forked from wbxpress/defer-jquery.php
Created September 11, 2016 18:25
Show Gist options
  • Save loorlab/3ad837d3ed423e0f34c9a925adf40134 to your computer and use it in GitHub Desktop.
Save loorlab/3ad837d3ed423e0f34c9a925adf40134 to your computer and use it in GitHub Desktop.
/** Remove jQuery scripts from begining */
add_action('wp_enqueue_scripts', 'wbxp_script_remove_header');
function wbxp_script_remove_header() {
wp_deregister_script( 'jquery' );
}
/** Load jQuery script at the end */
add_action('genesis_after_footer', 'wbxp_script_add_body');
function wbxp_script_add_body() {
wp_register_script( 'jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js', false, null);
wp_enqueue_script( 'jquery');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment