Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在fishpig wordpress magento集成中获取当前博客类别页面的类别名称和类别ID?
您可以按如下方式检索当前加载的类别:
<?php $category = Mage::registry('wordpress_category') ?> <?php if ($category): ?> <?php echo $category->getId() ?>: <?php echo $category->getName() ?> <?php endif; ?>