How can I create a nav like those generated by wp_nav_menu which lists all the posts in a specific custom post type?
For example, I have CPT “section1” and I’d like to have the menu list all posts which are of type “section1”. I’ve been searching the internet for three days now with no answer. Can anyone point me in the right direction?
I’m lost here, help!
There are several ways to do this. Unless you are only going to have a few posts of type ‘section1’ then I would advise against listing them all.
Options:
Using the WP_Query() option:
Hope that helps!
If you are looking to dynamically create a nav-menu from the posts of a specific category, let’s say having the slug ‘featured’, then replace ‘post_type’ => ‘section1’ with ‘category_name’ => ‘featured’