From fbf1ba5bef61a010d51acd3fe404041f6ba0341c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20Ko=CC=88nemann?= Date: Sun, 20 Mar 2016 09:52:49 +0100 Subject: [PATCH] Concat all JS into one file, so no need to enqueue anything --- inc/enqueue.php | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/inc/enqueue.php b/inc/enqueue.php index ecfc4ba..3546e3a 100644 --- a/inc/enqueue.php +++ b/inc/enqueue.php @@ -8,28 +8,11 @@ function understrap_scripts() { wp_enqueue_style( 'understrap-theme', get_stylesheet_directory_uri() . '/css/theme.min.css', array(), '0.3.8'); - // Unregister the default jQuery + // Unregister the default jQuery because it comes with the theme.min.js fiel already wp_deregister_script('jquery'); - - // 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); - - // 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-theme', get_template_directory_uri() . '/js/theme.min.js', array(), '0.3.8', 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' ); - } - - if ( is_active_sidebar( 'hero' ) ) { - wp_enqueue_style( 'understrap-carousel-style', get_template_directory_uri() . '/css/owl.carousel.css', array(), '20024' ); - wp_enqueue_script( 'understrap-carousel-script', get_template_directory_uri() . '/js/owl.carousel.min.js', array(), '20024', true );} - } add_action( 'wp_enqueue_scripts', 'understrap_scripts' );