Automattic\WooCommerce\Admin\Features

TransientNotices::get_queue()public staticWC 1.0

Get all notices in the queue.

Method of the class: TransientNotices{}

No Hooks.

Return

Array.

Usage

$result = TransientNotices::get_queue();

TransientNotices::get_queue() code WC 8.6.1

public static function get_queue() {
	return get_option( self::QUEUE_OPTION, array() );
}