Created
May 16, 2023 20:45
-
-
Save digisavvy/9934f4587ba3363df6ed93601dec4f94 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$video_id = get_post_meta(get_the_ID(), 'session_video_file_download', true); | |
if ($video_id) { | |
$video_url = wp_get_attachment_url($video_id); | |
if ($video_url) { | |
$shortcode = '[presto_player src="' . esc_attr($video_url) . '"]'; | |
$player_output = do_shortcode($shortcode); | |
echo $player_output; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment