Reply To: Query list of galleries — using as navigation

Bring Your Business to LifeSupportImage StoreQuery list of galleries — using as navigationReply To: Query list of galleries — using as navigation

#48533
Xpark Media
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