Deregister/Remove jquery.min.js from WordPress
Remove jquery.min.hs from WordPress wp_head
Tp remove jquery from WordPress add the below snippet to functions.php of your theme
add_filter( 'wp_enqueue_scripts', 'change_default_jquery', PHP_INT_MAX ); function change_default_jquery( ){ wp_dequeue_script( 'jquery'); wp_deregister_script( 'jquery'); }jquery,wordpress
Comments for this post