Definition:
function next_posts( $max_page = 0, $echo = true ) {}
Display or return the next posts page link.
Parameters
- int $max_page: Optional. Max pages.
- boolean $echo: Optional. Echo or return;
Source code
function next_posts( $max_page = 0, $echo = true ) {
$output = esc_url( get_next_posts_page_link( $max_page ) );
if ( $echo )
echo $output;
else
return $output;
}
2445

February 12, 2011 


No comments yet... Be the first to leave a reply!