在magento中自动生成元描述

时间:2014-10-22 15:19:03

标签: magento

我希望在我的产品中使用magento CE自动生成元描述: 在sitename.com上购买{price}的Rs {price}新书| {publihser}的授权卖家

1 个答案:

答案 0 :(得分:0)

从上面的描述中,我假设您要为产品动态设置元描述。

请在控制器的操作中使用以下代码:

$productName = $_product->getName();

$price = {your custom price};
$publisher = {Publisher name};
$description = 'Buy '.$productName.' for Rs '.$price.' at sitename.com | New Book | Authorised seller for '.$publisher;

$root = $this->getLayout()->getBlock('root');
$template = "page/3columns.phtml";
$root->setTemplate($template);

$head = $this->getLayout()->getBlock('head');
$head->setTitle("Your Title");
$head->setKeywords("your, keywords, anything");
$head->setDescription($description);

我希望,它会有所帮助.. :)