Forums
Forums / Plugin: Grid Products / Foreach in Products categories
(@tpmarc)
12 years, 4 months ago
How can I do a foreach like this:
<?php foreach ($categories as $cat): ?> //$cat stuff <?php endforeach ?>
With Grid Products in products categories?
My intention is create a menu of categories.
http://wordpress.org/plugins/grid-products/
I used my brain and the answers is:
<?php $categories = get_categories(array('taxonomy' => 'grid_product_category')); ?> <?php foreach ($categories as $cat): ?> <?php echo $cat->name ?> <?php endforeach ?>
The topic ‘Foreach in Products categories’ is closed to new replies.