简体   繁体   中英

Displaying all posts with custom taxonomy using WP_Query

在此处输入图像描述

I am trying to display a custom post type that has a custom taxonomy, but I am not having any luck. Nothing is showing up. I appreciate any help.

Post type = university

Custom Taxonomy slug = country

I wanted to show all the country list using WP_Query as there are some custom fields in this taxonomy. Also, on click of any country, it should redirect to a country page with its details

Below is my code

<?php
      $args = array(
        'post_type' => 'university',
        'tax_query' => array(
             array(
                 'taxonomy' => 'country'
             )
         )
      );

     $query = new WP_Query($args);

     if ($query->have_posts()) {
        while ($query->have_posts()) {
           $query->the_post();
     ?>

              <a title="<?php the_title(); ?>"> 

                 <h3><?php the_title(); ?></h3>

              </a>
     <?php
        }
     }
     wp_reset_postdata();
    ?>

I have modified your code, Please try it.

<?php

      $custom_terms = get_terms('country');
      $args = array(
        'post_type' => 'university',
        'tax_query' => array(             
             array(
                'taxonomy' => 'country',
                'field' => 'slug',
                'terms' => $custom_terms[0]->slug, // or the category name e.g. Germany
            ),
         )
      );

     $query = new WP_Query($args);

     if ($query->have_posts()) {
        while ($query->have_posts()) {
           $query->the_post();
     ?>

              <a title="<?php the_title(); ?>"> 

                 <h3><?php the_title(); ?></h3>

              </a>
     <?php
        }
     }
     wp_reset_postdata();
    ?>

We get all the terms of a taxonomy, loop through them, and fire off a title link to each post that belongs to that term.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM