如何在目录列表页面上获取magento类别元描述

时间:2016-12-06 07:09:46

标签: magento magento-1.9

我想在类别列表页面上动态显示每个类别的类别说明。首先,我尝试为每个类别设置条件,但这不是完美的解决方案,我发现最好的方法,所以我认为我应该分享它以防止有人时间。

1 个答案:

答案 0 :(得分:0)

通过使用以下代码,您可以检查主题的目录列表模板上的当前类别。

$metaDescription = Mage::getSingleton('catalog/layer')->getCurrentCategory()->getMetaDescription(); 
if(!empty($metaDescription)): ?>
<div class="col-md-12 std">
    <p><?php echo $metaDescription; ?></p>
</div>
<?php endif; ?>

按照屏幕截图在magento admin部分添加类别的元描述。 enter image description here