Answers for "wordpress not loading jquery"

0

wordpress not loading jquery

function include_jQuery() {
    if (!is_admin()) {
        // comment out the next two lines to load the local copy of jQuery
        wp_deregister_script('jquery'); 
        wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js', false, '1.8.3'); 
        wp_enqueue_script('jquery');
    }
}
add_action('init', 'include_jQuery');
Posted by: Guest on August-18-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language