Reputation: 27
I'm using the following cakephp format to give meta tags for all my pages. But unfortunately I can able to see meta description only for home page, for other pages I couldn't able to see any meta description and keywords.
<?php $this->Html->meta("keywords","kw, kw, kw,", array("inline" => false)); ?>
<?php $this->Html->meta("description","Meta description", array("inline" => false)); ?>
Upvotes: 1
Views: 171
Reputation: 258
Add echo before each call
<?php echo $this->Html->meta("keywords","kw, kw, kw,", array("inline" => false)); ?>
<?php echo $this->Html->meta("description","Meta description", array("inline" => false)); ?>
Upvotes: 3