php – WordPress如何知道分页是否有效?
作者:互联网
WordPress是一个函数还是类似的东西?我需要一种方法来检查是否有任何页面链接(较旧的条目|较新的条目)要显示.
最好的祝福,
解决方法:
如果查看new_posts_link函数,您将看到$max_page和$paged变量.
如果$pages高于1,则会有一个上一页链接.
它更小到$max_page,有一个下一页链接.
所以你可以做以下功能:
# Will return true if there is a next page
function has_next_page() {
global $paged, $max_page;
return $paged < $max_page;
}
# Will return true if there is a previous page
function has_previous_page() {
global $paged;
return $paged > 1;
}
# Will return true if there is more than one page (either before or after).
function has_pagination() {
return has_next_page() or has_previous_page();
}
标签:wordpress,php,wordpress-theming 来源: https://codeday.me/bug/20190717/1485133.html