<?php endif; ?> <?php get_header(); ?> <section class="article"> <h2>NEWS</h2> <div class="article_area" id="area_1"> <ul> <?php $args = array( 'paged' => $paged, 'post_type' => 'news', 'posts_per_page' => 2, ); $my_query = new WP_Query($args); if ($my_query->have_posts()) : while ($my_query->have_posts()) : $my_query->the_post(); ?> <li class="animated"> <a href="<?php the_permalink(); ?>" class="article_img"> <?php the_post_thumbnail('thumnail'); ?> </a> <a href="#" class="article_sen"> <h3><?php echo mb_substr( $post->post_title, 0, 20) . '...'; ?></h3> <span><?php the_excerpt(); ?></span> </a> </li> <?php endwhile; ?> <?php echo paginate_links( array ( 'type' => 'list', 'prev_text' => '«', 'next_text' => '»' )); ?> <?php wp_reset_query();endif; ?> </ul> </div> </section><link rel="stylesheet" href="<?=$dir; ?>/assets/css/archive.css">
</main> <?php get_footer(); ?>
カスタム投稿のアーカイブページのページネーションが表示されません。。。
ちなみに、プラグインのwp-pagenaviも入れましたが、表示されません。。。。
誰かご教授いただけたらと。。。。
やりたいことはカスタム投稿のアーカイブページのページネーション設置と、すべての記事のアーカイブページのページネーション設置です
全ての方は固定ページにアーカイブ作成しました。カスタムの方は、archive-slug.phpで作成しました
あなたの回答
tips
プレビュー