Video_Post::__construct( \WP_Post|int $post )
Post constructor.
Parameters
- $post
-
(Required)
Source
File: includes/libs/video-post.class.php
public function __construct( $post ) { $this->_post = get_post( $post, OBJECT, 'raw' ); $this->_image = new Image_Import( $this ); $meta = $this->get_video_data(); if( $meta ){ $this->_set_properties( $meta ); } }