bp_get_the_notification_mark_link( int $user_id )

Return the mark link for the current notification.

Description

Parameters

$user_id

(Required) The user ID.

Return

(string)

Source

File: bp-notifications/bp-notifications-template.php

741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
function bp_get_the_notification_mark_link( $user_id = 0 ) {
    // Set default user ID to use.
    $user_id = 0 === $user_id ? bp_displayed_user_id() : $user_id;
 
    if ( bp_is_current_action( 'read' ) ) {
        $retval = bp_get_the_notification_mark_unread_link( $user_id );
    } else {
        $retval = bp_get_the_notification_mark_read_link( $user_id );
    }
 
    /**
     * Filters the mark link for the current notification.
     *
     * @since BuddyPress 1.9.0
     * @since BuddyPress 2.6.0 Added $user_id as a parameter.
     *
     * @param string $retval  The mark link for the current notification.
     * @param int    $user_id The user ID.
     */
    return apply_filters( 'bp_get_the_notification_mark_link', $retval, $user_id );
}

Changelog

Changelog
Version Description
BuddyPress 2.6.0 Added $user_id as a parameter. BuddyPress 2.6.0 Added $user_id as a parameter.
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.