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!

link|improve this question
feedback

1 Answer

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:

<?php $posts = new WP_Query( array( 'post_type' => 'section1', 'posts_per_page' => -1 ) ); ?>

<ul>
<?php while( $posts->have_posts() ) : $posts->the_post(); ?>
    <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>

<?php wp_reset_postdata(); ?>

Hope that helps!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.