How can I remove jquery from the frontside of my WordPress?

前端 未结 10 899
逝去的感伤
逝去的感伤 2020-12-29 02:33

My wordpress site is a bit heavy to download. On the frontend, its including jquery unnecessarily. In my firebug it looks like:

jquery.js?ver=1.3.2
         


        
10条回答
  •  悲哀的现实
    2020-12-29 03:08

    All the other solutions are now out of date as of wordpress 3.6

    add_filter( 'wp_default_scripts', 'change_default_jquery' );
    
    function change_default_jquery( &$scripts){
        if(!is_admin()){
            $scripts->remove( 'jquery');
            $scripts->add( 'jquery', false, array( 'jquery-core' ), '1.10.2' );
        }
    }
    

提交回复
热议问题