at path:
ROOT
/
wp-content
/
plugins
/
tutor
/
templates
/
single
/
video
/
embedded.php
run:
R
W
Run
embedded.php
1.18 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
external_url.php
1.15 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
html5.php
1.23 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
shortcode.php
706 By
2026-04-14 05:34:27
R
W
Run
Delete
Rename
video.php
1.16 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
vimeo.php
1.65 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
youtube.php
1.51 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
error_log
up
📄
embedded.php
Save
<?php /** * Display Video HTML5 * * @package Tutor\Templates * @subpackage Single\Video * @author Themeum <support@themeum.com> * @link https://themeum.com * @since 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } $video_info = tutor_utils()->get_video_info(); $video_info = $video_info ? (array) $video_info : array(); do_action( 'tutor_lesson/single/before/video/embedded' ); ?> <?php if ( $video_info ) : ?> <div class="tutor-video-player"> <input type="hidden" id="tutor_video_tracking_information" value="<?php echo esc_attr( json_encode( $jsonData ?? null ) ); ?>"> <div class="loading-spinner" aria-hidden="true"></div> <div class="tutor-ratio tutor-ratio-16x9"> <?php echo wp_kses( tutor_utils()->array_get( 'source_embedded', $video_info ), array( 'iframe' => array( 'src' => true, 'title' => true, 'height' => true, 'width' => true, 'frameborder' => true, 'allowfullscreen' => true, 'allow' => true, 'style' => true, ), ) ); ?> </div> </div> <?php endif; ?> <?php do_action( 'tutor_lesson/single/after/video/embedded' ); ?>