Skip to content

Instantly share code, notes, and snippets.

@kartikparmar
Last active December 14, 2023 11:43
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 kartikparmar/b2ae742259c92a6f047667c35f7cf876 to your computer and use it in GitHub Desktop.
Save kartikparmar/b2ae742259c92a6f047667c35f7cf876 to your computer and use it in GitHub Desktop.
dequeue jquery script
<?php
function dequeue_jquery_scripts() {
wp_dequeue_script( 'jquery' );
wp_dequeue_script( 'jquery-ui' );
wp_dequeue_script( 'jquery-ui-datepicker' );
}
add_action( 'wp_enqueue_scripts', 'dequeue_jquery_scripts', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment