Skip to content

Instantly share code, notes, and snippets.

@danielpataki
Last active April 7, 2016 09:23
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 danielpataki/d8fd1b863f4bb82be992775e519bf065 to your computer and use it in GitHub Desktop.
Save danielpataki/d8fd1b863f4bb82be992775e519bf065 to your computer and use it in GitHub Desktop.
Deregistering Scripts
wp_deregister_script( 'jquery' );
function my_enqueued_assets() {
wp_deregister_script( 'jquery' );
wp_enqueue_script( 'script-name', '//code.jquery.com/jquery-2.2.3.min.js', array(), '2.2.3' );
}
add_action( 'wp_enqueue_scripts', 'my_enqueued_assets' );
global $wp_scripts;
echo '<pre>';
var_dump( $wp_scripts );
echo '</pre>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment