Advertisement
bomb

Untitled

Oct 9th, 2024
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. function remove_jquery_migrate( $scripts ) {
  2.         if ( ! is_admin() && isset( $scripts->registered['jquery'] ) ) {
  3.                 $script = $scripts->registered['jquery'];
  4.                 if ( $script->deps ) {
  5.                         $script->deps = array_diff( $script->deps, array( 'jquery-migrate' ) );
  6.                 }
  7.         }
  8. }
  9. add_action( 'wp_default_scripts', 'remove_jquery_migrate' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement