个性化阅读
专注于IT技术分析

如何显示自定义postype类别的所有帖子?

我正在尝试显示来自单个自定义帖子类型类别的帖子。例如:我有自定义帖子类型:”课程”, 此帖子类型有三个类别:课程一, 课程二, 课程三。我需要单独显示该类别的所有帖子。

这是我的代码:

<?php
  $args = array (
  'post_type' => 'cource', 'cat' => 5, // id one of category
);

 $cat_one = new WP_Query( $args );
?>

<?php while ( $cat_one->have_posts() ) :  $cat_one->the_post(); ?>      
 <div class="widget_item">
    <figure style="background-image: url(<?=$url;?>)"></figure>
    <div class="widget_meta">
        <ul>
            <li class="widget_item_title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
            <li><time><?php the_field('evente_date'); ?></time> 
            <li class="place"><?php the_field('evente_place'); ?> <i class="fa fa-map-marker"></i></li>
        </ul>
    </div>
</div>
<?php endwhile;?>

没有任何反应。如果我删除’cat’=> 5, 则所有帖子均以自定义帖子类型显示。请帮我解决这个问题。


#1


在查询中使用分类法参数:

$args = array (
  'post_type' => 'cource', 'tax_query' => array(
        array(
            'taxonomy' => 'cource', 'field'    => 'slug', 'terms'    => 'yout-taxonomy-term-slug-here', ), ), );

文件:https://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters

赞(0)
未经允许不得转载:srcmini » 如何显示自定义postype类别的所有帖子?

评论 抢沙发

评论前必须登录!