$page_for_posts, 'homeUrl' => $home_url, 'isSingle' => $is_single ); wp_localize_script( 'vertical-one-page', 'vars', $vars ); } // menu - vertical page association end } } add_action( 'wp_enqueue_scripts', 'understrap_scripts' ); /** *Loading slider script conditionally **/ if ( is_active_sidebar( 'hero' ) ): add_action( "wp_enqueue_scripts", "understrap_slider" ); if ( ! function_exists ( 'understrap_slider' ) ) { function understrap_slider() { if ( is_front_page() ) { $data = array( "timeout" => intval( get_theme_mod( 'understrap_theme_slider_time_setting', 5000 ) ), "items" => intval( get_theme_mod( 'understrap_theme_slider_count_setting', 1 ) ) ); wp_enqueue_script( "understrap-slider-script", get_stylesheet_directory_uri() . '/js/slider_settings.js', array(), '0.4.9' ); wp_localize_script( "understrap-slider-script", "understrap_slider_variables", $data ); } } } endif;