video-thumbnail.php
24 lines
| 1 | <div class="sc-video-thumbnail"> |
| 2 | <img class="<?php echo esc_attr( $class ?? '' ); ?>" src="<?php echo esc_url( $src ?? '' ); ?>" alt="<?php echo esc_attr( $alt ?? '' ); ?>"> |
| 3 | <div aria-role="button" tabindex="0" class="sc-video-play-button" aria-label="<?php echo esc_attr__( 'Play video', 'surecart' ); ?>"> |
| 4 | <?php |
| 5 | echo wp_kses( |
| 6 | \SureCart::svg()->get( |
| 7 | 'play', |
| 8 | [ |
| 9 | 'width' => 12, |
| 10 | 'height' => 12, |
| 11 | 'class' => '', |
| 12 | ] |
| 13 | ), |
| 14 | sc_allowed_svg_html() |
| 15 | ); |
| 16 | ?> |
| 17 | <span class="screen-reader-text"> |
| 18 | <?php |
| 19 | // translators: %s is the video title. |
| 20 | echo esc_html( sprintf( __( 'Play video: %s', 'surecart' ), $title ?? '' ) ); |
| 21 | ?> |
| 22 | </span> |
| 23 | </div> |
| 24 | </div> |