月別アーカイブなのに全件表示される
-
ご覧いただきありがとうございます。表題の件で困っております。
date.phpは用意していません。archive.phpのみ使用しています。
URLはきちんと2017年2月ならhttp://○○.jp/2017/02、2016年5月ならhttp://○○.jp/2016/05となるのですが表示されているのは全件です。
それ以外のカテゴリアーカイブはきちんと表示され、ページネーションも正常に動きます。<?php $args = array( 'posts_per_page' => 10, 'paged' => $paged, 'orderby' => 'post_date', 'order' => 'DESC', 'post_type' => 'post', 'post_status' => 'publish' ); $the_query = new WP_Query($args); if ($the_query->have_posts()) : while ($the_query->have_posts()) : $the_query->the_post(); ?> ループされる内容 <?php endwhile; endif; ?> <?php //ページネーション if ($the_query->max_num_pages > 1) { echo paginate_links(array( 'base' => get_pagenum_link(1) . '%_%', 'format' => '/page/%#%/', 'current' => max(1, $paged), 'total' => $the_query->max_num_pages )); } wp_reset_postdata(); ?>
何か間違いがありましたらご指摘頂けますと幸いです。
よろしくお願いいたします。
4件の返信を表示中 - 1 - 4件目 (全4件中)
4件の返信を表示中 - 1 - 4件目 (全4件中)
- トピック「月別アーカイブなのに全件表示される」には新たに返信することはできません。