Answer the question
In order to leave comments, you need to log in
How to write meta tags in yii2?
How to write meta tags in yii2?
Answer the question
In order to leave comments, you need to log in
$this->title = 'your title';
$this->registerMetaTag(['name' => 'description', 'content' => 'your description']);
$this->registerMetaTag(['name' => 'keywords', 'content' => 'your keywords']);
$this->registerLinkTag(['rel' => 'canonical', 'href' => 'canonical url']);
In order to avoid duplicate meta tags on the page, you need to add the key as the second argument:
$this->registerMetaTag([
'name' => 'description',
'content' => 'Description 1',
], 'description');
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question