Merge pull request #2647 from muskie9/bugfix/virtualPageCanonical2637

UPDATE generate canonical via MetaComponents
This commit is contained in:
Daniel Hensby 2021-05-14 21:49:30 +01:00 committed by GitHub
commit f230adcc69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 12 deletions

View File

@ -134,23 +134,22 @@ class VirtualPage extends Page
}
/**
* For VirtualPage, add a canonical link tag linking to the original page
* See TRAC #6828 & http://support.google.com/webmasters/bin/answer.py?hl=en&answer=139394
*
* @param boolean $includeTitle Show default <title>-tag, set to false for custom templating
* @return string The XHTML metatags
* @return array
*/
public function MetaTags($includeTitle = true)
public function MetaComponents()
{
$tags = parent::MetaTags($includeTitle);
$tags = parent::MetaComponents();
$copied = $this->CopyContentFrom();
if ($copied && $copied->exists()) {
$tags .= HTML::createTag('link', [
'rel' => 'canonical',
'href' => $copied->Link()
]);
$tags .= "\n";
$tags['canonical'] = [
'attributes' => [
'rel' => 'canonical',
'content' => $copied->AbsoluteLink(),
],
];
}
return $tags;
}