Changeset 11292
- Timestamp:
- 12/12/2016 10:37:15 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-messages/bp-messages-template.php
r10904 r11292 1578 1578 function bp_get_thread_recipients_count() { 1579 1579 global $thread_template; 1580 return count( $thread_template->thread->recipients ); 1580 /** 1581 * Filters the total number of recipients in a thread. 1582 * 1583 * @since 2.8.0 1584 * 1585 * @param int $count Total recipients number. 1586 */ 1587 return (int) apply_filters( 'bp_get_thread_recipients_count', count( $thread_template->thread->recipients ) ); 1581 1588 } 1582 1589
Note: See TracChangeset
for help on using the changeset viewer.