Bring Your Business to Life › Support › Image Store › Query list of galleries — using as navigation › Reply To: Query list of galleries — using as navigation
July 17, 2012 at 9:35 pm #48533
Keymaster
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