bp_core_add_admin_notice( string $notice = '', string $type = 'updated' )

Add an admin notice to the BP queue.


Description Description

Messages added with this function are displayed in BuddyPress’s general purpose admin notices box. It is recommended that you hook this function to admin_init, so that your messages are loaded in time.


Parameters Parameters

$notice

(Optional) The notice you are adding to the queue.

Default value: ''

$type

(Optional) The notice type; optional. Usually either "updated" or "error".

Default value: 'updated'


Top ↑

Source Source

File: bp-core/admin/bp-core-admin-functions.php

function bp_core_add_admin_notice( $notice = '', $type = 'updated' ) {

	// Do not add if the notice is empty.
	if ( empty( $notice ) ) {
		return;
	}

	// Double check the object before referencing it.
	if ( ! isset( buddypress()->admin->notices ) ) {
		buddypress()->admin->notices = array();
	}

	// Add the notice.
	buddypress()->admin->notices[] = array(
		'message' => $notice,
		'type'    => $type,
	);
}

Top ↑

Changelog Changelog

Changelog
Version Description
1.5.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.