使用WP_Query显示所有自定义分类

时间:2018-03-09 03:15:53

标签: wordpress taxonomy

enter image description here

我正在尝试显示具有自定义分类的自定义帖子类型,但我没有运气。什么都没有出现。我感谢任何帮助。

帖子类型=大学

Custom Taxonomy slug = country

我想使用WP_Query显示所有国家/地区列表,因为此分类中有一些自定义字段。此外,点击任意国家/地区,它应该重定向到包含其详细信息的国家/地区页面

以下是我的代码

<?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();
    ?>

1 个答案:

答案 0 :(得分:2)

我修改了您的代码,请尝试一下。

<?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();
    ?>

我们获取分类法的所有条款,循环遍历它们,并触发属于该术语的每个帖子的标题链接。