Calotype\SEO\Generators\MetaGenerator::setDescription PHP Method

setDescription() public method

Set the Meta description.
public setDescription ( string $description )
$description string
    public function setDescription($description)
    {
        $description = strip_tags($description);
        if (strlen($description) > $this->max_description_length) {
            $description = substr($description, 0, $this->max_description_length);
        }
        $this->description = $description;
    }