【问题标题】:How to add pagination on BBPRESS forums page?如何在 BBPRESS 论坛页面上添加分页?
【发布时间】:2018-12-04 09:53:48
【问题描述】:

我想在10个论坛列表后的论坛页面上添加分页:http://nimb.ws/MEUyK2

【问题讨论】:

    标签: wordpress pagination bbpress


    【解决方案1】:

    将此 PHP 函数添加到您的子主题 functions.php 文件或类似功能的插件中,以增加页面中的论坛总数。最好只在论坛根目录中按新鲜度显示主题,而不是在“设置”>“论坛”中进行设置。

    function rkk_increase_forum_per_page( $args ) {
        $args['posts_per_page'] = get_option( '_bbp_forums_per_page', 150 );
      return $args;
    }
    
    add_filter( 'bbp_before_has_forums_parse_args', 'rkk_increase_forum_per_page' );
    

    Reference

    【讨论】:

    • 我已经试过了,这个过滤器只改变每页的帖子而不添加分页
    猜你喜欢
    • 2012-11-30
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-03-25
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多