Load scripts in footer instead of header

This commit is contained in:
koenemann 2016-02-25 15:07:09 +01:00
parent 078842de84
commit 0e91205324
1 changed files with 13 additions and 5 deletions

View File

@ -8,7 +8,15 @@
function understrap_scripts() {
wp_enqueue_style( 'understrap-theme', get_stylesheet_directory_uri() . '/css/theme.min.css', array(), '0.3.7', false );
wp_deregister_script('jquery');
// Load the copy of jQuery that comes with WordPress
// The last parameter set to TRUE states that it should be loaded
// in the footer.
wp_register_script('jquery', '/wp-includes/js/jquery/jquery.js', false, '1.11.3', true);
wp_enqueue_script('jquery');
wp_enqueue_script( 'understrap-navigation', get_template_directory_uri() . '/js/bootstrap.min.js', array(), '20120206', true );