InfoReviews Bring Your Business to Life › Support › Image Store › Query list of galleries — using as navigation Viewing 2 posts - 1 through 2 (of 2 total) Post navigation ← Previous Next → Author Posts July 17, 2012 at 7:46 am #48527 sarahfrantzParticipant Ok, well apparently listing my code isn’t working, but basically I queried the custom post type to get the permalink and title July 17, 2012 at 9:35 pm #48533 Xpark MediaKeymaster use get post or create a custom loop using WP_Query(); $args = array( 'post_type' => 'page'); $galleries = new WP_Query( $args ); while ( $galleries->have_posts() ) : $galleries->the_post(); endwhile; // Reset Post Data wp_reset_postdata() Here you can find more information on wp_query Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Login form protected by Login LockDown. Log In