Warning: This function has been deprecated.

bp_get_message_is_active_notice()

Returns a string for the active notice.


Description Description

Since 1.6 this function has been deprecated in favor of text in the theme.


Return Return

(string)


Top ↑

Source Source

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

	function bp_get_message_is_active_notice() {

		$string = bp_messages_is_active_notice()
			? __( 'Currently Active', 'buddypress' )
			: '';

		return apply_filters( 'bp_get_message_is_active_notice', $string );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.6.0 This function has been deprecated.
1.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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