Helper::get_video_post( bool|int|\WP_Post $post = false )
Get the \Vimeotheque\Video_Post object of a post.
Description
Returns the video post object \Vimeotheque\Video_Post for the current post in the loop or the post passed to the function.
Parameters
- $post
-
(Optional) The WordPress post that will be processed into a Video_Post object.
Default value: false
Return
(\Vimeotheque\Video_Post)
Source
File: includes/libs/helper.class.php
public static function get_video_post( $post = false ){ if( $post instanceof Video_Post ){ return $post; } return new Video_Post( $post ); }