This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Astra_Notices::get_notices()

Get all registered notices.


Description

Since v1.1.8 it is recommended to register the notices on


Return

(array|null)


Source

File: inc/lib/astra-notices/class-astra-notices.php

		private function get_notices() {
			usort( self::$notices, array( $this, 'sort_notices' ) );

			return self::$notices;
		}


User Contributed Notes

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