video.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | exit; |
| 5 | } |
| 6 | |
| 7 | $attributes = $this->attributes ?? []; |
| 8 | $attribute_markup = []; |
| 9 | |
| 10 | foreach ( $attributes as $key => $value ) { |
| 11 | $attribute_markup[] = sprintf( '%s="%s"', $key, esc_attr( $value ) ); |
| 12 | } |
| 13 | ?> |
| 14 | |
| 15 | <video controls src="<?= $this->src ?>" preload="metadata" <?= implode( ' ', $attribute_markup ); ?>></video> |