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
    			? 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
    			$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)