vimeotheque_the_video_embed()
Embed the current video post.
Description
Outputs the embed for the current video post in the loop.
Return
(void)
Source
File: includes/libs/templates/post-template.php
function vimeotheque_the_video_embed(){
$post = \Vimeotheque\Helper::get_video_post();
$player = new Player( $post );
return $player->get_output( true );
}
