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.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.php
36 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 <img src="<?php echo esc_attr( $this->image_url ); ?>">
6 <div class="ewd-us-slide-text">
7
8 <div class="ewd-us-slide-title"><?php echo esc_html( $this->title ); ?></div>
9 <div class="clear"></div>
10
11 <div class="ewd-us-slide-excerpt"><?php echo wp_kses_post( $this->filtered_content ); ?></div>
12 <div class="clear"></div>
13
14 <ul class="ewd-us-slide-buttons">
15
16 <?php foreach ( $this->buttons as $button ) { ?>
17
18 <li>
19 <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>
20 </li>
21 <?php } ?>
22
23 </ul>
24
25 </div>
26
27 <?php if ( $ewd_us_controller->settings->get_setting( 'carousel' ) and $ewd_us_controller->settings->get_setting( 'carousel-link-to-full' ) ) { ?>
28
29 <a href="' . get_the_permalink( $this->post->ID ) . '" class="ewd-us-carousel-link-to-full"></a>
30 <?php } ?>
31
32 <?php if ( $ewd_us_controller->settings->get_setting( 'mobile-link-to-full' ) ) { ?>
33
34 <a href="' . get_the_permalink( $this->post->ID ) . '" class="ewd-us-mobile-link-to-full"></a>
35 <?php } ?>
36 </li>