[wp]特定タームのカスタム投稿一覧作成

結論だけ

<?php
    $myposts = new WP_Query(array(
        'post_type' => '【カスタム投稿スラッグ】',
        'posts_per_page'=> -1,
        'post_status' => 'publish',
        'tax_query' => array(
            array(
              'taxonomy' => '【タクソノミースラッグ】',
              'field' => 'slug',
              'terms' => 'タームスラッグ',
            )
          ),
     
    ));
?>
<?php if($myposts->have_posts()): ?>
<ul>
<?php while($myposts->have_posts()): $myposts->the_post(); ?>
    <li><a href="<?php the_permalink(); ?>"><span><?php the_title(); ?></span></a></li>
<?php endwhile; ?>
</ul>
<?php else: ?>
空っぽだよ
<?php endif; ?>

コメント

タイトルとURLをコピーしました