custom post type pagination broken
-
hello !
here’s what I’m trying to do :I have a custom post type (epicerie)
the posts are displayed on a custom page template like this :<?php $paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1; $query = new WP_Query( array( 'paged' => $paged, 'post_type' => 'epicerie' ) ); ?> <?php if ($query->have_posts()) : ?> <?php while ($query->have_posts()) : $query->the_post(); ?> // display my elements <?php endwhile; ?> <?php endif; ?>next I add the nav links, and they show up :
<p class="prev"><?php previous_posts_link( __( 'Produits précédents','my_theme'), $query->max_num_pages ); ?></p> <p class="next"><?php next_posts_link( __( 'Produits suivants','my_theme'), $query->max_num_pages ); ?></p>First page is okay, posts are displayed, but when I clic the next post link it’s a 404…
body class of the first page is :
<body class="page page-id-14 page-template page-template-page-epicerie-php">and page 2 is :
<body class="error404 paged-2">I’m clearly missing something, but what ? a template ?
any idea ?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘custom post type pagination broken’ is closed to new replies.