I want to remove default jQuery, because I am adding new or latest jQuery. Also I want include some js in my footer. How can I do that?
I want to add another different js like a slider js or css in my footer.
I want to remove default jQuery, because I am adding new or latest jQuery. Also I want include some js in my footer. How can I do that?
I want to add another different js like a slider js or css in my footer.
This will do the trick when added to your functions file:
if (!is_admin()) add_action("wp_enqueue_scripts", "my_jquery_enqueue", 11);
function my_jquery_enqueue() {
wp_deregister_script('jquery');
wp_register_script('jquery', "//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js", false, null);
wp_enqueue_script('jquery');
}