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