Home Plugins remove jquery
Remove jQuery from Theme logo

Remove jQuery from Theme

by Marc Tönsing on WordPress.org

Removes jQuery from your frontend theme if no administrator is logged-in. jQuery will still be loaded and continue to work in you backend and when the …

(1)

Removes jQuery from your frontend theme if no administrator is logged-in. jQuery will continue to work in you backend and when the admin toolbar is visible. Plugins which depend on jQuery will not be loaded either.

This plugin does nothing more but this:

function init_without_jquery() {
    if (!is_admin() AND !is_admin_bar_showing()) {
        wp_deregister_script('jquery');
        wp_register_script('jquery', false);
    }
}

add_action('init', 'init_without_jquery');
Active installations200+
Weekly downloads
20-13.04%
Version1.0
Last updated3/9/2021
WordPress version5.0
Tested up to5.6.14
Tags
jquery