Next-previous pages in wordpress -


i'm pretty new in wordpress ! tried hard know how add next , previous pages pagination , proudly couldn't asked maybe can helps here

like how add , how choose number of posts choose in page , how style .. has classes or ? ^^

that's enough ,

try read how works in official wordpress documentation pagination.

there you'll learn several methods , techniques wordpress pagination.

an basic example setting pagination:

<!-- start of main loop. --> <?php while ( have_posts() ) : the_post();  ?>  <!-- rest of theme's main loop -->  <?php endwhile; ?> <!-- end of main loop -->  <!-- add pagination functions here. -->  <div class="nav-previous alignleft"><?php next_posts_link( 'older posts' ); ?></div> <div class="nav-next alignright"><?php previous_posts_link( 'newer posts'     ); ?></div>  <?php else : ?> <p><?php _e('sorry, no posts matched criteria.'); ?></p> <?php endif; ?> 

Comments

Popular posts from this blog

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -