我创建了以下查询,以便在自定义页面中获取多个帖子类型,到目前为止效果良好:
<?php
$args = array(
\'post_type\' => array(\'things\', \'people\', \'post\'),
\'posts_per_page\' => -1,
);
$query = new WP_Query( $args );
$postcount = 0;
?>
<?php if ($query->have_posts()) : ?>
<?php while ($query->have_posts()) : $query->the_post(); ?>
<?php the_title( \'\', \'\', true ); ?>
<?php $count++; // Increase the count by 1 ?>
<?php endwhile; endif; // END the Wordpress Loop ?>
<?php wp_reset_query(); ?>
我希望每个帖子类型都有一个类,或者几个类。如果是人员自定义的帖子类型,请在周围添加类人员。我该怎么做?