我知道还有其他几个帖子与我要问的内容有相似之处。
除了“posts”之外,我还有三种自定义的post类型。我想运行一个循环,将所有分类为特定类别的帖子
<?php
$args = array(
\'post_type\' => \'testimonial\',
\'posts_per_page\' => 1,
\'tax_query\' => array(
array (
\'taxonomy\' => \'testimonial_category\',
\'field\' => \'slug\',
\'terms\' => \'home\'
)
)
);
$query = new WP_Query( $args );
$postcount = 0;
?>
<?php if ($query->have_posts()) : ?>
<?php while ($query->have_posts()) : $query->the_post(); ?>
<?php $postcount++; ?>
//loop here
<?php wp_reset_query(); ?>
这是我目前拥有的代码,不知道如何将其浓缩为从一个类别中引入多个帖子类型。