next_posts_link() WP 1.0
Displays the next posts page link.
Works based on: get_next_posts_link()
No Hooks.
Return
Null. Nothing.
Usage
next_posts_link( $label, $max_page );
- $label(string)
- Content for link text.
Default: null - $max_page(int)
- Max pages.
Default: 0
Changelog
Since 0.71 | Introduced. |
Code of next_posts_link() next posts link WP 5.6
function next_posts_link( $label = null, $max_page = 0 ) {
echo get_next_posts_link( $label, $max_page );
}Related Functions
From category: Archives
More from Template Tags: Posts, Pages, ...
- body_class()
- get_post_format()
- get_post_time()
- get_the_date()
- have_posts()
- in_the_loop()
- next_image_link()
- next_post_link()
- post_class()
- post_password_required()
- previous_image_link()