Query list of galleries — using as navigation

Bring Your Business to LifeSupportImage StoreQuery list of galleries — using as navigation

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #48527
    sarahfrantz
    Participant

    Ok, well apparently listing my code isn’t working, but basically I queried the custom post type to get the permalink and title

    #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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.