投稿を1つのカテゴリからのみ表示したいとします。この機能をどのように変更する必要がありますか?1つのカテゴリからの投稿のみを表示(機能変更)
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array('post_type' => 'post','paged' => $paged);
query_posts($args);
if (have_posts()) :
while (have_posts()) : the_post();
get_template_part('post-format/content', get_post_format());
endwhile;
else:
get_template_part('post-format/content', 'none');
endif;
?>
は、あなたのargs配列内の別のパラメータカテゴリを渡します – Poria