This function has been deprecated. Deprecated since BuddyPress 1.9.0. Use bp_notifications_get_notifications_for_user() instead.
bp_core_get_notifications_for_user( int $user_id, string $format = 'string' )
Get notifications for a specific user.
Description
Parameters
- $user_id
-
(Required) ID of user.
- $format
-
(Optional)
Default value: 'string'
Return
(boolean) Object or array on success, false on failure.
Source
File: bp-core/deprecated/buddypress/1.9.php
function bp_core_get_notifications_for_user( $user_id, $format = 'string' ) {
// Bail if notifications is not active
if ( ! bp_is_active( 'notifications' ) ) {
return false;
}
// Trigger the deprecated function notice
_deprecated_function( __FUNCTION__, '1.9', 'bp_notifications_get_notifications_for_user()' );
return bp_notifications_get_notifications_for_user( $user_id, $format );
}
Changelog
| Version | Description |
|---|---|
| BuddyPress 1.0.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.