diff options
| author | Max | 2017-05-18 14:03:27 +0200 |
|---|---|---|
| committer | Max | 2017-05-18 14:03:27 +0200 |
| commit | f597e2fe949a1e18eb778b9a5bd102de88570555 (patch) | |
| tree | 7e42e6f91dd3e764cd2cf0c4f61f48501c2ed98f /inc/enqueue.php | |
| download | docs.maxmail.xyz-master.tar.gz | |
Diffstat (limited to 'inc/enqueue.php')
| -rw-r--r-- | inc/enqueue.php | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/inc/enqueue.php b/inc/enqueue.php new file mode 100644 index 0000000..a84698f --- /dev/null +++ b/inc/enqueue.php @@ -0,0 +1,47 @@ +<?php +/** + * understrap enqueue scripts + * + * @package understrap + */ + + +function understrap_scripts() { + wp_enqueue_style( 'understrap-styles', get_stylesheet_directory_uri() . '/css/theme.min.css', array(), '0.3.9'); + wp_enqueue_style( 'bootstrap-material-design', get_template_directory_uri() .'/css/bootstrap-material-design.min.css',array(),'0.5.10' ); + wp_enqueue_style( 'bootstrap-material-design-ripples', get_template_directory_uri() .'/css/ripples.min.css',array(),'0.5.10' ); + + wp_enqueue_script('jquery'); + wp_enqueue_script( 'understrap-scripts', get_template_directory_uri() . '/js/theme.min.js', array(), '0.3.9', true ); + + if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { + wp_enqueue_script( 'comment-reply' ); + } +} + +add_action( 'wp_enqueue_scripts', 'understrap_scripts' ); + +/** +*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( + "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.3.9'); + wp_localize_script( "understrap-slider-script", "understrap_slider_variables", $data ); + } +} +endif; + + + + |
