BP_Notifications_Notification::get_all_for_user( int $user_id, string $status = 'is_new' )
Fetch all the notifications in the database for a specific user.
Description
Parameters
- $user_id
-
(Required) ID of the user whose notifications are being fetched.
- $status
-
(Optional) Status of notifications to fetch. 'is_new' to get only unread items, 'all' to get all.
Default value: 'is_new'
Return
(array) Associative array of notification items.
Source
File: bp-notifications/classes/class-bp-notifications-notification.php
943 944 945 946 947 948 | public static function get_all_for_user( $user_id , $status = 'is_new' ) { return self::get( array ( 'user_id' => $user_id , 'is_new' => 'is_new' === $status , ) ); } |
Changelog
Version | Description |
---|---|
BuddyPress 1.9.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.