PATH:
home
/
centosnipponia
/
public_html
/
lifannl
/
wp-content
/
themes
/
sydney-pro-ii
/
inc
<?php /** * Slider template * * @package Sydney */ //Slider template if ( ! function_exists( 'sydney_slider_template' ) ) : function sydney_slider_template() { if ( !get_option( 'sydney-update-header' ) ) { $front_header = get_theme_mod('front_header_type','slider'); } else { $front_header = get_theme_mod('front_header_type','nothing'); } //Remove from blog pages 2,3,4 etc. if needed $paged = true; $slider_paged = get_theme_mod( 'slider_paged', 0 ); if ( $slider_paged && is_paged() ) { $paged = false; } if ( ($front_header == 'slider' && is_front_page() && $paged ) || (get_theme_mod('site_header_type') == 'slider' && !is_front_page() && $paged ) ) { //Get the slider options $speed = get_theme_mod('slider_speed', '4000'); $text_slide = get_theme_mod('textslider_slide', 0); $mobile_slider = get_theme_mod('mobile_slider', 'responsive'); $slider_h_alignment = get_theme_mod( 'slider_h_alignment', 'center' ); $heading_tag = get_theme_mod('slider_title_heading_tag', 'h2'); $animation = get_theme_mod('slider_animation', 'fade'); //Slider text $titles = array( 'slider_title_1' => get_theme_mod('slider_title_1', 'Welcome to Sydney'), 'slider_title_2' => get_theme_mod('slider_title_2', 'Ready to begin your journey?'), 'slider_title_3' => get_theme_mod('slider_title_3'), 'slider_title_4' => get_theme_mod('slider_title_4'), 'slider_title_5' => get_theme_mod('slider_title_5'), ); $subtitles = array( 'slider_subtitle_1' => get_theme_mod('slider_subtitle_1', 'Feel free to look around'), 'slider_subtitle_2' => get_theme_mod('slider_subtitle_2', 'Feel free to look around'), 'slider_subtitle_3' => get_theme_mod('slider_subtitle_3'), 'slider_subtitle_4' => get_theme_mod('slider_subtitle_4'), 'slider_subtitle_5' => get_theme_mod('slider_subtitle_5'), ); $images = array( 'slider_image_1' => get_theme_mod('slider_image_1', get_stylesheet_directory_uri() . '/images/1.jpg'), 'slider_image_2' => get_theme_mod('slider_image_2', get_stylesheet_directory_uri() . '/images/2.jpg'), 'slider_image_3' => get_theme_mod('slider_image_3'), 'slider_image_4' => get_theme_mod('slider_image_4'), 'slider_image_5' => get_theme_mod('slider_image_5'), ); ?> <?php if ( !sydney_is_amp() ) : ?> <div id="slideshow" class="header-slider" data-speed="<?php echo esc_attr($speed); ?>" data-animation="<?php echo esc_attr($animation); ?>" data-mobileslider="<?php echo esc_attr($mobile_slider); ?>"> <div class="slides-container"> <?php $c = 1; ?> <?php foreach ( $images as $image ) { if ( $image ) { $image_alt = sydney_image_alt( $image ); ?> <div class="slide-item slide-item-<?php echo $c; ?>" style="background-image:url('<?php echo esc_url( $image ); ?>');"> <img class="mobile-slide preserve" src="<?php echo esc_url( $image ); ?>" alt="<?php echo esc_attr( $image_alt ); ?>"/> <div class="slide-inner slider-align-<?php echo esc_attr( $slider_h_alignment ); ?>"> <div class="contain animated fadeInRightBig text-slider"> <<?php echo esc_attr( $heading_tag ); ?> class="maintitle"><?php echo esc_html( $titles['slider_title_' . $c] ); ?></<?php echo esc_attr( $heading_tag ); ?>> <p class="subtitle"><?php echo esc_html( $subtitles['slider_subtitle_' . $c] ); ?></p> </div> <?php echo sydney_slider_button( $c ); ?> </div> <div class="slider-overlay"></div> </div> <?php } $c++; } ?> </div> <?php if ( $text_slide ) : ?> <?php echo sydney_stop_text(); ?> <?php endif; ?> </div> <?php else : ?> <div id="slideshow" class="header-slider" data-speed="<?php echo esc_attr($speed); ?>" data-mobileslider="<?php echo esc_attr($mobile_slider); ?>"> <div class="slides-container"> <amp-carousel type="slides" width="450" height="300" layout="responsive" controls loop autoplay delay="3000" role="region"> <?php $c = 1; ?> <?php foreach ( $images as $image ) { if ( $image ) { $image_alt = sydney_image_alt( $image ); ?> <div class="slide-item slide-item-<?php echo $c; ?>" style="background-image:url('<?php echo esc_url( $image ); ?>');"> <img class="mobile-slide preserve" src="<?php echo esc_url( $image ); ?>" alt="<?php echo esc_attr( $image_alt ); ?>"/> <div class="slide-inner"> <div class="contain animated fadeInRightBig text-slider"> <<?php echo esc_attr( $heading_tag ); ?> class="maintitle"><?php echo wp_kses_post( $titles['slider_title_' . $c] ); ?></<?php echo esc_attr( $heading_tag ); ?>> <p class="subtitle"><?php echo esc_html( $subtitles['slider_subtitle_' . $c] ); ?></p> </div> <?php echo $button; ?> </div> </div> <?php } $c++; } ?> </amp-carousel> </div> </div> <?php endif; ?> <?php } elseif ( ($front_header == 'crelly' && is_front_page()) || (get_theme_mod('site_header_type') == 'crelly' && !is_front_page()) ) { $alias = get_theme_mod('rev_alias'); if ($alias && function_exists('crellySlider')) { crellySlider($alias); } } elseif ( ($front_header == 'video' && is_front_page()) || (get_theme_mod('site_header_type') == 'video' && !is_front_page()) ) { $mp4 = get_theme_mod('video_mp4'); $webm = get_theme_mod('video_webm'); $ogv = get_theme_mod('video_ogv'); $poster = get_theme_mod('video_poster'); ?> <div class="video-container"> <?php echo do_shortcode('[video autoplay="on" poster="' . esc_url($poster) . '" loop="on" mp4="' . esc_url($mp4) . '" webm="' . esc_url($webm) . '" ogv="' . esc_url($ogv) . '"]'); ?> </div> <?php } elseif ( ($front_header == 'shortcode' && is_front_page()) || (get_theme_mod('site_header_type') == 'shortcode' && !is_front_page()) ) { $shortcode = get_theme_mod('header_shortcode'); echo '<div class="shortcode-area">'; echo do_shortcode(wp_kses_post($shortcode)); echo '</div>'; } } endif; function sydney_slider_button( $c = false ) { $slider_button = get_theme_mod('slider_button_text_' . $c ); if ( '' == $slider_button ) { $slider_button = get_theme_mod('slider_button_text', 'Click to begin'); } $slider_button_url = get_theme_mod('slider_button_url_' . $c ); if ( '' == $slider_button_url ) { $slider_button_url = get_theme_mod('slider_button_url','#primary'); } if ($slider_button) { return '<a href="' . esc_url( $slider_button_url ) . '" class="roll-button button-slider">' . esc_html($slider_button) . '</a>'; } } function sydney_stop_text() { $heading_tag = get_theme_mod('slider_title_heading_tag', 'h2'); $slider_title_1 = get_theme_mod('slider_title_1', 'Welcome to Sydney'); $slider_subtitle_1 = get_theme_mod('slider_subtitle_1','Feel free to look around'); $slider_h_alignment = get_theme_mod('slider_h_alignment','center'); ?> <div class="slide-inner text-slider-stopped slider-align-<?php echo esc_attr( $slider_h_alignment ); ?>"> <div class="contain text-slider"> <<?php echo esc_attr( $heading_tag ); ?> class="maintitle"><?php echo esc_html($slider_title_1); ?></<?php echo esc_attr( $heading_tag ); ?>> <p class="subtitle"><?php echo esc_html($slider_subtitle_1); ?></p> </div> <?php echo sydney_slider_button(); ?> </div> <?php }
[+]
..
[+]
classes
[+]
customizer
[+]
elementor
[+]
integrations
[+]
modules
[+]
onboarding
[+]
templates-builder
[-] block-styles.php
[edit]
[-] contact-metabox.php
[edit]
[-] custom-header.php
[edit]
[-] display-conditions.php
[edit]
[-] editor.php
[edit]
[-] extras.php
[edit]
[-] fonts.php
[edit]
[-] hooks.php
[edit]
[-] jetpack.php
[edit]
[-] legacy.php
[edit]
[-] page-builder.php
[edit]
[-] pricing-tables.php
[edit]
[-] pt-metabox.php
[edit]
[-] schema.php
[edit]
[-] slider.php
[edit]
[-] styles.php
[edit]
[-] template-tags.php
[edit]
[-] theme-dashboard-settings.php
[edit]
[-] theme-update.php
[edit]
[-] woocommerce.php
[edit]
[-] .htaccess.disabled
[edit]