Skip to content

Instantly share code, notes, and snippets.

@shangdev
Created August 5, 2017 10:44
Show Gist options
  • Save shangdev/f22f635a8d17225b13b0adb860cb1d0c to your computer and use it in GitHub Desktop.
Save shangdev/f22f635a8d17225b13b0adb860cb1d0c to your computer and use it in GitHub Desktop.
Wordpress:function.php写入取消默认Jquery的引入
// Delete System Jquery
function delete_jquery() {
if ( is_admin() ) return;
wp_deregister_script('jquery');
}
add_action('wp_enqueue_scripts', 'delete_jquery');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment