9ml

home.phpに特定のタクソノミーの特定のタームの記事のみを表示する

<?php
    $args = array(
        post_type => 'post',
        posts_per_page => 10,
        taxonomy => [タクソノミー名],
        term => [ターム名]
    );
    $posts = new WP_Query($args);
?>
<?php
    if( $posts->have_posts() ) :
        while( $posts->have_posts() ) :
            $posts->the_post();
?>

--- 繰り返し処理 ---

<?php
    endwhile; endif; wp_reset_postdata();
?>
ホームに戻る