Arcanedev\SeoHelper\SeoHelper::setTitle PHP Method

setTitle() public method

Set title.
public setTitle ( string $title, string | null $siteName = null, string | null $separator = null ) : SeoHelper
$title string
$siteName string | null
$separator string | null
return SeoHelper
    public function setTitle($title, $siteName = null, $separator = null)
    {
        $this->meta()->setTitle($title, null, $separator);
        $this->openGraph()->setTitle($title);
        $this->twitter()->setTitle($title);
        return $this->setSiteName($siteName);
    }