インフォメーション
'post',
'posts_per_page' => -1,
'orderby' => 'date', //日付順に並び替え(作成日or更新日にするか確認)
'order' => 'DESC',
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => 'pc',
),
array(
'taxonomy' => 'news_category',
'field' => 'slug',
'terms' => 'info',
),
)
); ?>
have_posts() ) : $list_query->the_post(); ?>
';
}
?>
current_post === $list_query->post_count - 1) {
echo '
';
}
?>

