9ml

特定のカテゴリの記事一覧を表示する

home.php

<?php
    $args = array(
        'posts_per_page' => 10,
        'category_name' => 'カテゴリ名'
    );
    $posts = new WP_Query($args);
?>
<?php
    if($posts->have_posts()) :
        while($posts->have_posts()) :
            $posts->the_post();
?>
---  ---
<?php
   endwhile; endif; wp_reset_query(); ????
?>
ホームに戻る