Arcanedev\SeoHelper\Entities\Title::render PHP 메소드

render() 공개 메소드

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