Skip to content

Instantly share code, notes, and snippets.

@alwerner
Created October 3, 2013 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alwerner/6813280 to your computer and use it in GitHub Desktop.
Save alwerner/6813280 to your computer and use it in GitHub Desktop.
function my_scripts_method() {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', get_template_directory_uri() . '/js/jquery-new.js');
wp_enqueue_script( 'jquery' );
}
add_action('wp_enqueue_scripts', 'my_scripts_method');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment