bp_get_notifications_read_permalink( $user_id )
Return the read notifications permalink.
Description Description
Return Return
(string) Read notifications permalink.
Source Source
File: bp-notifications/bp-notifications-template.php
function bp_get_notifications_read_permalink( $user_id = 0 ) {
if ( 0 === $user_id ) {
$user_id = bp_loggedin_user_id();
$domain = bp_loggedin_user_domain();
} else {
$domain = bp_core_get_user_domain( (int) $user_id );
}
$retval = trailingslashit( $domain . bp_get_notifications_slug() . '/read' );
/**
* Filters the read notifications permalink.
*
* @since 1.9.0
* @since 2.6.0 Added $user_id as a parameter.
*
* @param string $retval Permalink for the read notifications.
* @param int $user_id The user ID.
*/
return apply_filters( 'bp_get_notifications_unread_permalink', $retval, $user_id );
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.9.0 | Introduced. |