Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save digisavvy/9934f4587ba3363df6ed93601dec4f94 to your computer and use it in GitHub Desktop.
Save digisavvy/9934f4587ba3363df6ed93601dec4f94 to your computer and use it in GitHub Desktop.
<?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