bp_get_total_unread_messages_count( int $user_id )
Get the unread messages count for the current inbox.
Description Description
Parameters Parameters
- $user_id
-
(Required) The user ID.
Return Return
(int) $unread_count Total inbox unread count for user.
Source Source
File: bp-messages/bp-messages-template.php
function bp_get_total_unread_messages_count( $user_id = 0 ) { /** * Filters the unread messages count for the current inbox. * * @since 1.0.0 * * @param int $value Unread messages count for the current inbox. */ return apply_filters( 'bp_get_total_unread_messages_count', BP_Messages_Thread::get_inbox_count( $user_id ) ); }
Changelog Changelog
Version | Description |
---|---|
2.6.x | Introduced. |