PluginProbe ʕ •ᴥ•ʔ
Slider Ultimate / 2.2.10
Slider Ultimate v2.2.10
2.2.10 trunk 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9
ultimate-slider / ewd-us-templates / slide-video.php
ultimate-slider / ewd-us-templates Last commit date
slide-arrows.php 4 years ago slide-indicators-dots.php 4 years ago slide-indicators-sidethumbnails.php 4 years ago slide-indicators-thumbnails.php 4 years ago slide-video.php 2 years ago slide.php 2 years ago slider.php 4 years ago
slide-video.php
41 lines
1 <?php global $ewd_us_controller; ?>
2
3 <li <?php echo ewd_format_classes( $this->classes ); ?> id="ewd-us-slide-<?php echo esc_attr( $this->slide_count ); ?>" <?php echo $this->print_lightbox_data(); ?> >
4
5 <div class='ewd-us-video-holder iframetrack'>
6 <div>
7 <?php echo $this->print_youtube_video_code(); ?>
8 </div>
9 </div>
10
11 <div class="ewd-us-slide-text">
12
13 <div class="ewd-us-slide-title"><?php echo esc_html( $this->title ); ?></div>
14 <div class="clear"></div>
15
16 <div class="ewd-us-slide-excerpt"><?php echo wp_kses_post( $this->filtered_content ); ?></div>
17 <div class="clear"></div>
18
19 <ul class="ewd-us-slide-buttons">
20
21 <?php foreach ( $this->buttons as $button ) { ?>
22
23 <li>
24 <a class="ewd-us-slide-button" href="<?php echo esc_attr( $this->get_button_link( $button ) ); ?>" <?php echo esc_attr( $this->get_button_link_target_text( $button ) ); ?> ><?php echo esc_html( strtoupper( $button['Text'] ) ); ?></a>
25 </li>
26 <?php } ?>
27
28 </ul>
29
30 </div>
31
32 <?php if ( $ewd_us_controller->settings->get_setting( 'carousel' ) and $ewd_us_controller->settings->get_setting( 'carousel-link-to-full' ) ) { ?>
33
34 <a href="' . get_the_permalink( $this->post->ID ) . '" class="ewd-us-carousel-link-to-full"></a>
35 <?php } ?>
36
37 <?php if ( $ewd_us_controller->settings->get_setting( 'mobile-link-to-full' ) ) { ?>
38
39 <a href="' . get_the_permalink( $this->post->ID ) . '" class="ewd-us-mobile-link-to-full"></a>
40 <?php } ?>
41 </li>