gpt4 book ai didi

php - 从 Magento 获取类别名称

转载 作者:搜寻专家 更新时间:2023-10-31 21:52:17 25 4
gpt4 key购买 nike

我在 Magento 中使用 Luxury 主题。我试图在 catalog/category/view.phtml 文件中显示当前类别名称。

到目前为止我做了什么:

<div class="custom">
<?php if($crumbs && is_array($crumbs)): ?>
<div class="container">
<div class="col-md-12">
<ul>
<?php foreach($crumbs as $_crumbName=>$_crumbInfo): ?>
<li class="<?php echo $_crumbName ?>" <?php if(Mage::getStoreConfig('mgs_theme/general/snippets') == 1): ?> itemscope itemtype="http://data-vocabulary.org/Breadcrumb" <?php endif ?>>
<?php if($_crumbInfo['link']): ?>
<a href="<?php echo $_crumbInfo['link'] ?>" title="<?php echo $this->escapeHtml($_crumbInfo['title']) ?>" <?php if(Mage::getStoreConfig('mgs_theme/general/snippets') == 1): ?> itemprop="url" <?php endif ?>><span <?php if(Mage::getStoreConfig('mgs_theme/general/snippets') == 1): ?> itemprop="title" <?php endif ?>><?php echo $this->escapeHtml($_crumbInfo['label']) ?></span></a>
<?php else: ?>
<strong><span <?php if(Mage::getStoreConfig('mgs_theme/general/snippets') == 1): ?> itemprop="title" <?php endif ?>><?php echo $this->escapeHtml($_crumbInfo['label']) ?></span></strong>
<?php endif; ?>
<?php if(!$_crumbInfo['last']): ?>
<span>| </span>
<?php endif; ?>
</li>
<?php endforeach; ?>
</ul>
</div>
</div>
<?php endif ?>

</div>

我从 page/html/breadcrumbs.phtml 中获取了这段代码。

我是 Magento/PHP 的新手。它没有显示任何错误,但它没有显示类别的名称,但它在面包屑标题中可见。我在这里做错了什么?

最佳答案

如果你想在类别页面上显示类别名称。您可以通过两种方式实现这一目标。

<?php echo $this->getCurrentCategory()->getName(); ?>

或者

<?php echo Mage::registry('current_category')->getName() ?>

关于php - 从 Magento 获取类别名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39392508/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com