最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > Magento > Magento教程 >

Magento自动生成Meta信息

时间:2014-06-17 23:32来源:未知 作者:最模板zuimoban 点击:
Magento在添加产品的时候是可以给每个产品添加title,description,keywords的,要是你的产品很多很多,而且你想要一个比较利于SEO的Meta信息,手动添加的话非常耗时。下面介绍根据产品名

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()) ?>“ />

(责任编辑:最模板)
------分隔线----------------------------
栏目列表
推荐内容