bp_get_groups_pagination_count()
Generate the “Viewing x-y of z groups” pagination message.
Description
Return
(string)
Source
File: bp-groups/bp-groups-template.php
2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 | function bp_get_groups_pagination_count() { global $groups_template ; $start_num = intval ( ( $groups_template ->pag_page - 1 ) * $groups_template ->pag_num ) + 1; $from_num = bp_core_number_format( $start_num ); $to_num = bp_core_number_format( ( $start_num + ( $groups_template ->pag_num - 1 ) > $groups_template ->total_group_count ) ? $groups_template ->total_group_count : $start_num + ( $groups_template ->pag_num - 1 ) ); $total = bp_core_number_format( $groups_template ->total_group_count ); $message = sprintf( _n( 'Viewing 1 group' , 'Viewing %1$s - %2$s of %3$s groups' , $groups_template ->total_group_count, 'buddyboss' ), $from_num , $to_num , $total ); /** * Filters the "Viewing x-y of z groups" pagination message. * * @since BuddyPress 1.5.0 * * @param string $message "Viewing x-y of z groups" text. * @param string $from_num Total amount for the low value in the range. * @param string $to_num Total amount for the high value in the range. * @param string $total Total amount of groups found. */ return apply_filters( 'bp_get_groups_pagination_count' , $message , $from_num , $to_num , $total ); } |
Changelog
Version | Description |
---|---|
BuddyPress 1.5.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.