函数原型
next_posts_link( string $label = null, int $max_page )
函数描述
Displays the next posts page link.
是否弃用
未弃用
函数参数
-
$label
string
Optional - Content for link text.
Default:
null -
$max_page
int
Optional - Max pages. Default 0.
函数返回值
无
函数位置
File: wp-includes/link-template.php.
函数源码
function next_posts_link( $label = null, $max_page = 0 ) {
echo get_next_posts_link( $label, $max_page );
}
源码链接
变更日志
| Version | Description |
|---|---|
| 0.71 | Introduced. |

