Selva Paisamint
Selva Paisamint

Reputation: 27

Cakephp meta tags not working

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

Answers (1)

IWillScoop
IWillScoop

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

Related Questions