Languages: English • 日本語 (Add your language)
Used on single post permalink pages, this template tag displays a link to the next post which exists in chronological order from the current post.
In standard usage (within the default, unaltered loop) next_post_link
will generate a link to a post that is newer (more recent) than the current post. This is in contrary to the similarly-named previous_posts_link
, which will typically link to a page of posts that is older than the current batch.
This tag must be used in The Loop.
<?php next_post_link( $format, $link, $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ); ?>
Displays link with the post title of the next post (chronological post date order), followed by a right angular quote (»).
<?php next_post_link(); ?>
Displays link with next chronological post's title wrapped in 'strong' tags (typically sets text to bold).
<?php next_post_link( '<strong>%link</strong>' ); ?>
Displays custom text as link to the next post within the same category as the current post. Post title is not included here. "Next post in category" is the custom text, which can be changed to fit your requirements.
<?php next_post_link( '%link', 'Next post in category', TRUE ); ?>
Displays link to next post in the same category, as long as it is not in category 13 (the category ID #). You can change the number to any category you wish to exclude. Exclude multiple categories by using " and " as a delimiter.
<?php next_post_link( '%link', 'Next post in category', TRUE, '13' ); ?>
Displays link to next post in the same taxonomy term. Post Formats are a taxonomy so the following would link to the next post with the same post format.
<?php next_post_link( '%link', 'Next post in taxonomy', TRUE, ' ', 'post_format' ); ?>
See also previous_post_link().
next_post_link() is located in wp-includes/link-template.php
.