0

選択したカテゴリ名とそのサブカテゴリを左側に表示したい。

app\design\frontend\base\default\template\catalog\navigation\left.phtml

left.phtml で

<?php if (!Mage::registry('current_category')) return ?>
<?php $_categories = $this->getCurrentChildCategories() ?>
<?php $_count = is_array($_categories)?count($_categories):$_categories->count(); ?>
<?php if($_count): ?>
<div class="block block-layered-nav">
<div class="block-title">
    <strong><span><?php echo $this->__('Browse By') ?></span></strong>
</div>
<div class="block-content">
    <dl id="narrow-by-list2">


       <dt><?php echo $this->__('Category') ?>

        </dt>
        <dd>
            <ol>
            <?php foreach ($_categories as $_category): ?>
                <?php if($_category->getIsActive()): ?>
                <li>
                    <a href="<?php echo $this->getCategoryUrl($_category) ?>"<?php if ($this->isCategoryActive($_category)): ?> class="current"<?php endif; ?>><?php echo $this->htmlEscape($_category->getName()) ?></a> (<?php echo $_category->getProductCount() ?>)
                </li>
                <?php endif; ?>
            <?php endforeach ?>
            </ol>
        </dd>
    </dl>
    <script type="text/javascript">decorateDataList('narrow-by-list2')</script>
    </div>
  </div>
  <?php endif; ?>

このコードを使用してカテゴリ リストを表示できますが、カテゴリ名の代わりに「CATEGORY」が表示されます。CATEGORY だけでなく、現在のカテゴリを表示するにはどうすればよいですか?

4

1 に答える 1

0

ここで現在のカテゴリを取得できます

$_category = Mage::registry('current_category');

于 2012-11-06T05:29:57.050 に答える