Fishpig Wordpress Magento

1.7k views Asked by At

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

1

There are 1 answers

0
Ben Tideswell On

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; ?>