コード張るの忘れてました
<?php
/* (ステップ1)データの取得 */
$query = new WP_Query(
array(
'post_type' => 'qa', //ポストID
'order' => 'asc', /* 記事の順番 */
'taxonomy' => 'qacat',
'terms' => 'qaterms', /* 記事ターム */
)
);
?>
<?php
/* (ステップ2)データの表示 */
if ( $query->have_posts() ) : ?>
<?php while ( $query->have_posts() ) : $query->the_post();?>
<li class="questionContent01 accordionjs1">
<p class="question">
<span class="q">Q<?php echo ps_number('qa'); ?>.</span>
<span class="q2"><?php the_title(); ?></span></p>
<ul class="accordionjs2">
<li class="accordionjs1">
<ul class="answerContent01">
<li class="a01">A.<li>
<li class="answer"><?php the_content(); ?><li>
</ul><!-- /answer-->
</li>
</ul>
</li>
<?php endwhile; ?>
<?php endif; wp_reset_postdata(); ?>
</ul>