0

How to get category name and category Id of current blog category page in fishpig wordpress magento integration?

Steve Robbins
  • 13,672
  • 12
  • 76
  • 124
Nida
  • 1,672
  • 3
  • 35
  • 68

1 Answers1

2

You can retrieve the current loaded category as follows:

<?php $category = Mage::registry('wordpress_category') ?>
<?php if ($category): ?>
    <?php echo $category->getId() ?>: <?php echo $category->getName() ?>
<?php endif; ?>
Ben Tideswell
  • 1,697
  • 2
  • 11
  • 14