D
D
d4c4237abc2018-05-07 21:51:32
Yii
d4c4237abc, 2018-05-07 21:51:32

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

2 answer(s)
A
Andrey Zakharov, 2018-05-07
@d4c4237abc

$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']);

R
Ruslan (beckson), 2020-04-11
@beckson

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');

Source

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question