如何在单帖分页中获取当前页的页码

时间:2018-05-13 作者:Edogawa Kudo

比如说,我有一篇“单篇文章”,由<!--nextpage--> 标页码总共有50页<因此,用户正在浏览该帖子,他位于第25页。我想让帖子显示他在哪一页<所以它只是显示Page Number : 25
如果问题不清楚,您可以发表评论,要求提供更多详细信息,我将编辑问题以进一步阐述。但我想解释这个问题并不难<谢谢你的帮助!

1 个回复
最合适的回答,由SO网友:birgire 整理而成

对于单个页面,可以尝试使用全局$page 变量

另一种选择是尝试获取查询page 变量,例如:

$wpse_current_page = (int) get_query_var( \'page\' );

if( $wpse_current_page > 0 ) {
    printf( 
        __( \'Page Number: %d\', \'wpse-theme-slug\' ), 
        (int) $wpse_current_page  
    );
}
在您的单个页面上。

结束

相关推荐

运行PHPUnit测试后恢复WordPress默认选项

tl;dr: is there a way to make changes to WordPress options during a PHPUnit test suite execution, and have the changes reverted to the WordPress defaults before the next test suite is executed, without writing a custom teardown function?我正在测试我的插件,它提供了一个功能