Forums

Show all my pages on one page (excuding sub-pages) (1 post)

  1. noahgelman
    Member
    Posted 11 months ago #

    Looping through your pages and displaying them on one page is easy

    <?php query_posts('post_type=page'); ?>
    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
       <?php the_title(); ?>
       <?php the_content(); ?>
    <?php endwhile; endif; ?>

    But what if I want to exclude sub pages and only show the main pages? I don't know how to adjust it. Any help would be greatly appreciated.

Reply

You must log in to post.

About this Topic