我在 layout.phtml 上有一些默认的元标记:
$this->headMeta()
->appendHttpEquiv('Content-Type', 'text/html;charset=utf-8')
->appendName('description', 'test test test')
->appendName('keywords', 'test test test')
->appendName('robots', 'index, follow')
->appendName('language', 'bg')
->appendName('googlebot', 'index, follow, archive')
->appendName('tags', 'test test test');
如何将更多关键字和描述添加到现有视图中,我试试这个(/views/scripts/index/news.phtml:
echo $this->headMeta()
->appendName('description', 'new desc')
->appendName('keywords', 'new keys');
但不工作。Zend 创建两个描述和两个关键字标签。
我想向现有的添加新的关键字和描述。经验。如果在 layout.phtml 我生成:
$this->headMeta()
->appendName('keywords', 'music, song, mp3')
在 /views/scripts/index/news.phtml 我想添加新关键字,以添加到 layout.phtml 中已经存在的关键字。