Hey All, thanks in advance for any guidance.
I created a custom post type called 'products' Attached this post type I have two taxonomy groups: "Men's Category (mens-category) and "Women's Category (womens-category). What I am trying to accomplish, but have become vexed, is to create page templates for each taxonomy group.
For the Men's Product Page I would like to target all posts from the product post type that are part of "mens-category" taxonomy group. I would like to do the same, respectively, for the women's taxonomy group.
What would the correct arguments be to accomplish this? I have this in the wp query which is incorrect:
$args = array('post_type' => 'product', 'taxonomy' => 'womens-category');
Thanks!
Rich