Arcanedev\SeoHelper\Entities\Title::render PHP Method

render() public method

Render the tag.
public render ( ) : string
return string
    public function render()
    {
        $separator = $this->renderSeparator();
        $output = $this->isTitleFirst() ? $this->renderTitleFirst($separator) : $this->renderTitleLast($separator);
        return '<title>' . $this->prepareTitleOutput($output) . '</title>';
    }