Add taxonomy buttons above query, for user filter?
-
I would like to add buttons that show each option of a taxonomy (including ALL) above my
wp_queryresults so users can filter by type.Here is my loop code:
<div class="content-wrap"> <div class="galleries"> <?php $campGallery = new WP_Query(array( 'posts_per_page' => 2, 'post_type' => 'camp_gallery', 'paged' => $paged, 'mid_size' => 2, 'orderby' => 'meta_value', 'meta_key' => 'start_date' )); while($campGallery->have_posts()){ $campGallery->the_post(); ?> <div class="gallery-inner"> <h2><?php the_title()?></h2> <h3><?php the_field('start_date')?> to <?php the_field('end_date')?></h3> <div class="gallery-images avia-gallery"> <?php $photos = get_field('photos'); if ($photos) { foreach ($photos as $photo) { ?> <a href="<?php echo $photo['url']?>"> <img src="<?php echo $photo['sizes']['square']?>"> </a> <?php } } ?> </div> </div> <?php } ?> <div> <ul> <li class="page-btn"><?php previous_posts_link( '<i class="fas fa-chevron-left"></i> Newer Galleries', $campGallery->max_num_pages) ?></li> <li class="page-btn"><?php next_posts_link( ' Older Galleries <i class="fas fa-chevron-right"></i>', $campGallery->max_num_pages) ?></li> </ul> </div> </div> </div>
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
The topic ‘Add taxonomy buttons above query, for user filter?’ is closed to new replies.