2014-12-10 11:36:38 +00:00
|
|
|
<?php
|
2015-09-09 08:58:25 +00:00
|
|
|
/**
|
|
|
|
* understrap enqueue scripts
|
|
|
|
*
|
|
|
|
* @package understrap
|
|
|
|
*/
|
2014-12-10 11:36:38 +00:00
|
|
|
|
|
|
|
function understrap_scripts() {
|
2016-02-15 12:49:21 +00:00
|
|
|
wp_enqueue_style( 'understrap-theme', get_stylesheet_directory_uri() . '/css/theme.min.css', array(), '0.3.7', false );
|
2014-12-19 09:22:43 +00:00
|
|
|
|
2016-02-25 14:07:09 +00:00
|
|
|
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 );
|
2014-12-19 09:22:43 +00:00
|
|
|
|
|
|
|
|
2014-12-19 07:50:59 +00:00
|
|
|
wp_enqueue_script( 'understrap-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20130115', true );
|
2016-02-25 14:07:09 +00:00
|
|
|
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
|
|
|
|
wp_enqueue_script( 'comment-reply' );
|
|
|
|
}
|
2014-12-19 09:22:43 +00:00
|
|
|
|
|
|
|
if ( is_active_sidebar( 'hero' ) ) {
|
2014-12-19 14:30:25 +00:00
|
|
|
wp_enqueue_style( 'understrap-carousel-style', get_template_directory_uri() . '/css/owl.carousel.css', array(), '20024', false );
|
2014-12-19 09:22:43 +00:00
|
|
|
wp_enqueue_script( 'understrap-carousel-script', get_template_directory_uri() . '/js/owl.carousel.min.js', array(), '20024', true );}
|
|
|
|
}
|
|
|
|
|
2014-12-10 11:36:38 +00:00
|
|
|
add_action( 'wp_enqueue_scripts', 'understrap_scripts' );
|