Languages: English • 日本語 Русский • (Add your language)
Displays links for next and previous pages. Useful for providing "paged" navigation of index, category and archive pages.
For displaying next and previous pages of posts see next_posts_link() and previous_posts_link().
For displaying next and previous post navigation on individual posts, see next_post_link() and previous_post_link().
<?php posts_nav_link( $sep, $prelabel, $nextlabel ); ?>
Note: since weblog posts are traditionally listed in reverse chronological order (with most recent posts at the top), there is some ambiguity in the definition of "next page". WordPress defines "next page" as the "next page toward the past". In WordPress 1.5, the default Kubrick theme addresses this ambiguity by labeling the "next page" link as "previous entries". See Example: Kubrick Theme Format.
By default, the posts_nav_link() look like this:
<?php posts_nav_link(); ?>
Displays previous and next page links ("previous page · next page") centered on the page.
<div style="text-align:center;"> <?php posts_nav_link( ' · ', 'previous page', 'next page' ); ?> </div>
<?php posts_nav_link( ' ', '<img src="' . get_bloginfo( 'stylesheet_directory' ) . '/images/prev.jpg" />', '<img src="' . get_bloginfo( 'stylesheet_directory' ) . '/images/next.jpg" />' ); ?>
The Kubrick theme format for posts navigation, could be formatted this way. However, using posts_nav_link() in this way will result in unintended behavior, such as double stacked next and previous links that link to the incorrect sections.
The Kubrick Theme actually uses next_posts_link() and previous_posts_link().
This is poor code and should not be used:
<div class="navigation"> <div class="alignleft"><?php posts_nav_link( '', '', '« Previous Entries' ); ?></div> <div class="alignright"><?php posts_nav_link( '', 'Next Entries »', '' ); ?></div> </div>
This is better code:
<div class="navigation"> <div class="alignleft"><?php previous_posts_link( '« Previous Entries' ); ?></div> <div class="alignright"><?php next_posts_link( 'Next Entries »', '' ); ?></div> </div>
You can change the text in each of the links and in the text in between the links.
<p><?php posts_nav_link( ' or ', 'You can go back to the previous page', 'you can go forward to the next page' ); ?>.</p>
Since: 2.8.0
posts_nav_link() is located in wp-includes/link-template.php
.