BP_Messages_Notice::get_active()

Returns the active notice that should be displayed on the front end.

Description

Return

(object) The BP_Messages_Notice object.

Source

File: bp-messages/classes/class-bp-messages-notice.php

498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
public static function get_active() {
    $notice = wp_cache_get( 'active_notice', 'bp_messages' );
 
    if ( false === $notice ) {
        global $wpdb;
 
        $bp = buddypress();
 
        $notice_id = $wpdb->get_var( "SELECT id FROM {$bp->messages->table_name_notices} WHERE is_active = 1" );
        $notice    = new BP_Messages_Notice( $notice_id );
 
        wp_cache_set( 'active_notice', $notice, 'bp_messages' );
    }
 
    /**
     * Gives ability to filter the active notice that should be displayed on the front end.
     *
     * @since BuddyPress 2.8.0
     */
    return apply_filters( 'messages_notice_get_active', $notice );
}

Changelog

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.