wpseek.com
A WordPress-centric search engine for devs and theme authors



next_posts_link › WordPress Function

Since0.71
Deprecatedn/a
next_posts_link ( $label = null, $max_page = 0 )
Parameters: (2)
  • (string) $label Content for link text.
    Required: No
    Default: null
  • (int) $max_page Optional. Max pages. Default 0.
    Required: No
    Default:
Defined at:
Codex:

Displays the next posts page link.



Source

function next_posts_link( $label = null, $max_page = 0 ) {
	echo get_next_posts_link( $label, $max_page );
}