Arcanedev\SeoHelper\Entities\MiscTags::addCanonical PHP 메소드

addCanonical() 개인적인 메소드

Add the canonical link.
private addCanonical ( ) : MiscTags
리턴 MiscTags
    private function addCanonical()
    {
        if ($this->isCanonicalEnabled() && $this->hasUrl()) {
            $this->add('canonical', $this->currentUrl);
        }
        return $this;
    }