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
15 | function vimeotheque_the_video_embed(){ |
16 | $post = \Vimeotheque\Helper::get_video_post(); |
17 | $player = new Player( $post ); |
18 | return $player ->get_output( true ); |
19 | } |