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> |