Pimcore\Model\Object\BlogArticle::setTags PHP Method

setTags() public method

Set tags - Tags
public setTags ( string $tags, $language = null ) : BlogArticle
$tags string
return BlogArticle
    public function setTags($tags, $language = null)
    {
        $this->getLocalizedfields()->setLocalizedValue("tags", $tags, $language);
        return $this;
    }