bbp_get_topic_pagination

bbp_get_topic_pagination

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_get_topic_pagination') is found 2 times:

  • /includes/topics/template.php line 832
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
        ? array( 'view' => 'all' )
        : false;
     
    // Pagination settings with filter
    $bbp_topic_pagination = apply_filters( 'bbp_get_topic_pagination', array(
        'base'      => $base,
        'total'     => $total_pages,
        'current'   => 0,
        'prev_next' => false,
        'mid_size'  => 2,
        'end_size'  => 2,
  • /includes/topics/template.php line 851
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
                $pagination_links = $r['before'] . $pagination_links . $r['after'];
            }
     
            // Filter & return
            return apply_filters( 'bbp_get_topic_pagination', $pagination_links, $args );
        }
     
    /**
     * Append revisions to the topic content
     *
     * @since 2.0.0 bbPress (r2782)