This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
understrap/inc/enqueue.php

77 lines
2.3 KiB
PHP
Raw Normal View History

2014-12-10 11:36:38 +00:00
<?php
2015-09-09 08:58:25 +00:00
/**
2016-11-21 17:12:36 +00:00
* Understrap enqueue scripts
2015-09-09 08:58:25 +00:00
*
* @package understrap
*/
2014-12-10 11:36:38 +00:00
2016-11-21 17:12:36 +00:00
if ( ! function_exists( 'understrap_scripts' ) ) {
/**
* Load theme's JavaScript sources.
*/
2016-11-01 19:36:43 +00:00
function understrap_scripts() {
2016-11-21 17:12:36 +00:00
wp_enqueue_style( 'understrap-styles', get_stylesheet_directory_uri() . '/css/theme.min.css', array(),
2016-11-24 11:22:23 +00:00
'0.5.0' );
2016-11-01 19:36:43 +00:00
wp_enqueue_script( 'jquery' );
2016-11-24 11:22:23 +00:00
wp_enqueue_script( 'understrap-scripts', get_template_directory_uri() . '/js/theme.min.js', array(), '0.5.0',
2016-11-21 17:12:36 +00:00
true );
2016-11-01 19:36:43 +00:00
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
2016-10-23 15:54:40 +00:00
2016-11-01 19:36:43 +00:00
// menu - vertical page association
2016-11-18 21:33:34 +00:00
// do not load on WooCommerce pages
2016-11-21 17:12:36 +00:00
// do not load if we are in WooCommerce pages.
2016-11-18 21:33:34 +00:00
$loadit = true;
if ( class_exists( 'WooCommerce' ) ) {
2016-11-21 17:12:36 +00:00
if ( is_woocommerce() ) {
2016-11-18 21:33:34 +00:00
$loadit = false;
}
}
2016-11-21 17:12:36 +00:00
if ( is_page_template( ( 'page-templates/vertical-one-page.php' ) || is_home() || is_single() ) && $loadit ) {
wp_enqueue_script( 'vertical-one-page', get_template_directory_uri() . '/js/vertical-one-page.js',
2016-11-24 11:22:23 +00:00
array( 'jquery' ), '0.5.0', true );
2016-11-01 19:36:43 +00:00
$page_for_posts = strtolower( get_the_title( get_option( 'page_for_posts' ) ) );
$home_url = home_url();
$is_single = is_single();
$vars = array(
'pageForPosts' => $page_for_posts,
'homeUrl' => $home_url,
2016-11-21 17:12:36 +00:00
'isSingle' => $is_single,
2016-11-01 19:36:43 +00:00
);
wp_localize_script( 'vertical-one-page', 'vars', $vars );
}
2016-11-21 17:12:36 +00:00
// menu - vertical page association end.
2016-10-23 15:54:40 +00:00
}
2016-11-21 17:12:36 +00:00
} // endif function_exists( 'understrap_scripts' ).
2014-12-19 09:22:43 +00:00
2016-02-25 14:18:26 +00:00
add_action( 'wp_enqueue_scripts', 'understrap_scripts' );
2016-10-23 15:54:40 +00:00
/**
*Loading slider script conditionally
2016-11-21 17:12:36 +00:00
*/
2016-11-21 17:12:36 +00:00
if ( is_active_sidebar( 'hero' ) ) :
add_action( 'wp_enqueue_scripts', 'understrap_slider' );
2016-10-23 15:54:40 +00:00
2016-11-21 17:12:36 +00:00
if ( ! function_exists( 'understrap_slider' ) ) {
/**
* Setup slider.
*/
2016-11-01 19:36:43 +00:00
function understrap_slider() {
if ( is_front_page() ) {
$data = array(
2016-11-21 17:12:36 +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-11-01 19:36:43 +00:00
);
2016-11-21 17:12:36 +00:00
wp_enqueue_script( 'understrap-slider-script',
2016-11-24 11:22:23 +00:00
get_stylesheet_directory_uri() . '/js/slider_settings.js', array(), '0.5.0' );
2016-11-21 17:12:36 +00:00
wp_localize_script( 'understrap-slider-script', 'understrap_slider_variables', $data );
2016-11-01 19:36:43 +00:00
}
2016-10-23 15:54:40 +00:00
}
}
endif;