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.


Top ↑

Return Return

(int) $unread_count Total inbox unread count for user.


Top ↑

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 ) );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.6.x Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.