Magento在添加产品的时候是可以给每个产品添加title,description,keywords的,要是你的产品很多很多,而且你想要一个比较利于SEO的Meta信息,手动添加的话非常耗时。下面介绍根据产品名称,分类等动态生成一系列的Meta信息。
Magento写Meta的文件是,template->html->head.phtml里面就是里的信息了。首先判断一下是不是产品详细页:
<?php if (Mage::registry(‘current_product’)) : ?>
然后可以根据自己想要的来自动生成meta信息了(可以变换下面标记内容)
<?php
echo ‘<title>’.Mage::registry(‘current_product’)->getName().‘- ***Shop</title>’;
echo ‘<meta name=”description” content=”‘.htmlspecialchars(‘Buy your ”‘.Mage::registry(‘current_product’)->getName().‘” at ***Shop. Shop our complete collection of *
** including the ”‘.Mage::registry(‘current_product’)->getName().‘”.
‘).‘” />’;
<meta name=“keywords” content=“<?php echo htmlspecialchars(Mage::registry(‘current_product’)->getName()) ?>“ />
(责任编辑:好模板) |