Artesaos\SEOTools\OpenGraph::setVideoTVShow PHP 메소드

setVideoTVShow() 공개 메소드

Set video episode properties.
public setVideoTVShow ( array $attributes = [] ) : Artesaos\SEOTools\Contracts\OpenGraph
$attributes array opengraph video.tv_show attributes
리턴 Artesaos\SEOTools\Contracts\OpenGraph
    public function setVideoTVShow($attributes = [])
    {
        $validkeys = ['actor', 'actor:role', 'director', 'writer', 'duration', 'release_date', 'tag'];
        $this->setProperties('video.tv_show', 'videoTVShowProperties', $attributes, $validkeys);
        return $this;
    }