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-06-18 11:56:58 +00:00
|
|
|
wp_enqueue_style( 'understrap-styles', get_stylesheet_directory_uri() . '/css/theme.min.css', array(), '0.4.4');
|
2016-04-06 08:17:43 +00:00
|
|
|
wp_enqueue_script('jquery');
|
2016-06-18 11:56:58 +00:00
|
|
|
wp_enqueue_script( 'understrap-scripts', get_template_directory_uri() . '/js/theme.min.js', array(), '0.4.4', true );
|
2016-03-20 09:33:18 +00:00
|
|
|
|
|
|
|
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
|
|
|
|
wp_enqueue_script( 'comment-reply' );
|
|
|
|
}
|
|
|
|
}
|
2014-12-19 09:22:43 +00:00
|
|
|
|
2016-02-25 14:18:26 +00:00
|
|
|
add_action( 'wp_enqueue_scripts', 'understrap_scripts' );
|
|
|
|
|
2016-05-13 15:38:25 +00:00
|
|
|
/**
|
|
|
|
*Loading slider script conditionally
|
|
|
|
**/
|
|
|
|
|
|
|
|
if ( is_active_sidebar( 'hero' ) ):
|
|
|
|
add_action("wp_enqueue_scripts","understrap_slider");
|
|
|
|
|
|
|
|
function understrap_slider(){
|
|
|
|
if ( is_front_page() ) {
|
|
|
|
$data = array(
|
2016-06-23 09:21:57 +00:00
|
|
|
"timeout"=> intval( get_theme_mod( 'understrap_theme_slider_time_setting', 5000 )),
|
|
|
|
"items"=> intval( get_theme_mod( 'understrap_theme_slider_count_setting', 1 ))
|
2016-05-13 15:38:25 +00:00
|
|
|
);
|
|
|
|
|
2016-06-18 11:56:58 +00:00
|
|
|
wp_enqueue_script("understrap-slider-script", get_stylesheet_directory_uri() . '/js/slider_settings.js', array(), '0.4.4');
|
2016-05-13 15:38:25 +00:00
|
|
|
wp_localize_script( "understrap-slider-script", "understrap_slider_variables", $data );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
endif;
|
|
|
|
|