bp_nouveau_ajax_clear_new_mentions()

Clear mentions if the directory tab is clicked

Description

Return

(string) JSON reply.

Source

File: bp-templates/bp-nouveau/includes/activity/ajax.php

188
189
190
191
192
193
194
195
196
197
198
199
200
function bp_nouveau_ajax_clear_new_mentions() {
    if ( ! bp_is_post_request() ) {
        wp_send_json_error();
    }
 
    // Nonce check!
    if ( empty( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'bp_nouveau_activity' ) ) {
        wp_send_json_error();
    }
 
    bp_activity_clear_new_mentions( bp_loggedin_user_id() );
    wp_send_json_success();
}

Changelog

Changelog
Version Description
BuddyPress 3.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.