php CPT循环按分类过滤
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php CPT循环按分类过滤相关的知识,希望对你有一定的参考价值。
<!--start of cpt loop for review items-->
<?php
$testimonialsloop = new WP_Query( array(
'post_type' => 'reviews',
'posts_per_page' => 1,
'orderby' => 'rand',
'tax_query' => array(
array (
'taxonomy' => 'review_categories', //slug
'field' => 'slug', //slug, name or id
'terms' => 'ecrates' //taxonmy slug
)
)
) );
?>
<?php while ( $testimonialsloop->have_posts() ) : $testimonialsloop->the_post(); ?>
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="review">
<?php the_content(); ?>
</div>
<div class="review-meta">
<div class="stars"><?php the_field('review-stars'); ?></div>
<?php the_title( '<strong>', '</strong>' ); ?><br />
<?php the_field('review_city'); ?>
</div>
</div>
</div>
<?php endwhile; wp_reset_query(); ?>
<!--start of cpt loop for review items-->
以上是关于php CPT循环按分类过滤的主要内容,如果未能解决你的问题,请参考以下文章
php WP cpt和分类
php 注册CPT的自定义分类。这允许Wordpress仅为CPT分配类别,然后您可以显示这些类别。
php WordPress自定义分类与CPT相同的Slug
php 在“前端布局”列表中显示“自定义帖子类型”。 Upfront隐藏'产品'CPT,因为它依赖于电子商务插件,此过滤器将显示CPT i
php cpt同位素循环 - 将术语附加为过滤类
通过Wordpress循环通过ID循环CPT