I created a custom taxonomy, "partners". I would like to categorize these items, so I created a custom post type with a taxonomy.
register_taxonomy("partners-category", array("partners"), array("hierarchical" => true, "label" => "Partners", "singular_label" => "Partner", "rewrite" => true, "slug" => 'partners-category'));
I would like to list these posts by categories for example: categoryname-category.php. I know it's working only with posts, so what's the best way?
Thank you very much and sorry, I'm newbie.