Moving jQuery to footer from header

The proper way to wp_enqueue_script is :


wp_enqueue_script('jquery', get_template_directory_uri() . '/js/jquery.js', array(), '1.11.3', true);


The last parameter is $in_footer set it true which will insert the script into the footer.

Note: You don’t need to include jquery bcz by default it is added in WordPress.