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

setProfile() 공개 메소드

Set profile properties.
public setProfile ( array $attributes = [] ) : Artesaos\SEOTools\Contracts\OpenGraph
$attributes array opengraph profile attributes
리턴 Artesaos\SEOTools\Contracts\OpenGraph
    public function setProfile($attributes = [])
    {
        $validkeys = ['first_name', 'last_name', 'username', 'gender'];
        $this->setProperties('profile', 'profileProperties', $attributes, $validkeys);
        return $this;
    }