WC_Admin_Notices::output_custom_notices()public staticWC 1.0

Output any stored custom notices.

Метод класса: WC_Admin_Notices{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$result = WC_Admin_Notices::output_custom_notices();

Код WC_Admin_Notices::output_custom_notices() WC 8.7.0

public static function output_custom_notices() {
	$notices = self::get_notices();

	if ( ! empty( $notices ) ) {
		foreach ( $notices as $notice ) {
			if ( empty( self::$core_notices[ $notice ] ) ) {
				$notice_html = get_option( 'woocommerce_admin_notice_' . $notice );

				if ( $notice_html ) {
					include dirname( __FILE__ ) . '/views/html-notice-custom.php';
				}
			}
		}
	}
}