Custom Post Type: How to display all of same taxonomy?

@dcolumbus

You can do a permalink rewrite when you register the taxonomy using the following:

‘rewrite’ => array( ‘slug’ => ‘faqcategories’, ‘with_front’ => false ),

Then site.com/faqcategories should pull them and site.com/faqcategories/easy should get them for you for the ‘easy’ term.

If I’m understanding you correctly.

Leave a Comment