Hi,
I am trying to build theme ..
I don’t understand why the CPT is displayed but when I add fonction
<?php theme_post_nav(); ?> the pagination is displayed with previous and next CPT but when I click on it, it don’t work, may be problem of loop? it display same page..the first page…
this is code I used:
<div id=”ouvrages-cpt”>
<?php $loop = new WP_Query( array( ‘post_type’ => ‘ouvrages’, ‘posts_per_page’ => 3 ) ); ?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<div class=”Publications”>
-
<div id=”detailpublication”>
<h2><?php the_title(); ?></h2>
<p><?php the_excerpt(); ?></p>
</div>
<div class=”thumbnail”>
<?php the_post_thumbnail(‘thumbnail’); ?>
</div>
</div>
<?php endwhile; ?>
<footer class=”footer”>
<?php get_template_part( ‘nav’, ‘below-single’ ); ?>
<?php theme_post_nav(); ?>
</footer>
I try to use wp pagenavi too but it display anything.. no pagination.
I don’t understand why..
Sam