0

是否有可能在产品列表下方的类别列表视图中回显类别元关键字?

我在文件 template/catalog/catalog/product/list.phtml 中尝试了这样的想法:

<?php echo $_category->getMetaKeywords(); ?>

但它不输出任何东西。谢谢你

4

1 回答 1

2

您没有得到任何输出,因为 $_category 变量未在 template/catalog/catalog/product/list.phtml 中初始化。以下代码应有效:

<?php

$_category = Mage::registry('current_category');
echo $_category->getMetaKeywords();

?>
于 2012-12-02T11:19:38.477 回答