wpseek.com
WordPress开发者和主题制作者的搜索引擎



next_posts_link › WordPress Function

Since0.71
已弃用n/a
next_posts_link ( $label = null, $max_page = 0 )
参数: (2)
  • (string) $label Content for link text.
    Required: No
    默认: null
  • (int) $max_page Optional. Max pages. Default 0.
    Required: No
    默认:
定义在:
文档:

Displays the next posts page link.



源码

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