服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > magento教程 >

Magento自动生成Meta信息

时间:2016-03-31 11:59来源: 作者: 点击:
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()) ?>“ />

(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------
栏目列表
热点内容