From 49141e4e84e938b7e47b90bbda2f507fd680786f Mon Sep 17 00:00:00 2001 From: koenemann Date: Thu, 25 Feb 2016 15:12:53 +0100 Subject: [PATCH] Now with a 100/100 perfection grade from pingdome.com;-) http://tools.pingdom.com/fpt/#!/duhOu3/http://understrap.com/understrap/ --- inc/enqueue.php | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/inc/enqueue.php b/inc/enqueue.php index a12ded3..ee55914 100644 --- a/inc/enqueue.php +++ b/inc/enqueue.php @@ -8,18 +8,19 @@ 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'); + // Unregister the default jQuery + 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); + // Register the copy of jQuery that comes with WordPress again + // 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'); + // Now load it + wp_enqueue_script('jquery'); wp_enqueue_script( 'understrap-navigation', get_template_directory_uri() . '/js/bootstrap.min.js', array(), '20120206', true ); - wp_enqueue_script( 'understrap-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20130115', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' );