Changeset 10906
- Timestamp:
- 06/27/2016 05:50:09 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-blogs/bp-blogs-template.php
r10904 r10906 221 221 * Output the blogs pagination count. 222 222 * 223 * @since 1.0.0 224 */ 225 function bp_blogs_pagination_count() { 226 echo bp_get_blogs_pagination_count(); 227 } 228 229 /** 230 * Get the blogs pagination count. 231 * 232 * @since 2.7.0 233 * 223 234 * @global object $blogs_template {@link BP_Blogs_Template} 224 235 */ 225 function bp_ blogs_pagination_count() {236 function bp_get_blogs_pagination_count() { 226 237 global $blogs_template; 227 238 … … 237 248 } 238 249 239 echo $message; 250 /** 251 * Filters the "Viewing x-y of z blogs" pagination message. 252 * 253 * @since 2.7.0 254 * 255 * @param string $message "Viewing x-y of z blogs" text. 256 * @param string $from_num Total amount for the low value in the range. 257 * @param string $to_num Total amount for the high value in the range. 258 * @param string $total Total amount of blogs found. 259 */ 260 return apply_filters( 'bp_get_blogs_pagination_count', $message, $from_num, $to_num, $total ); 240 261 } 241 262
Note: See TracChangeset
for help on using the changeset viewer.