Skip to content

Instantly share code, notes, and snippets.

@nickwanhere
Last active October 11, 2015 09:28
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 nickwanhere/3838500 to your computer and use it in GitHub Desktop.
Save nickwanhere/3838500 to your computer and use it in GitHub Desktop.
Wordpress Add JS/CSS
function my_scripts_method() {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.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