Wednesday 1 April 2015

How To remove default jquery in wordpress

How To remove default jquery in wordpress


Hello

If you want to remove the WordPress default jquery in wordpress

just check below code you can understand how to remove that add your js.



<?php
function myphpinformation_scripts() {    
            
              
    if( !is_admin()){
wp_deregister_script('jquery');
wp_register_script('jquery', get_stylesheet_directory_uri() . '/js/jquery.min.js', false);
wp_enqueue_script('jquery');
}

}

add_action( 'wp_enqueue_scripts', 'myphpinformation_scripts' );
?>

here example of remove wordpress default jquery.

No comments:

Post a Comment

Thank You For Comment