WC_Admin_Notices::output_custom_notices
Output any stored custom notices.
Method of the class: WC_Admin_Notices{}
No Hooks.
Returns
null. Nothing (null).
Usage
$result = WC_Admin_Notices::output_custom_notices();
WC_Admin_Notices::output_custom_notices() WC Admin Notices::output custom notices code WC 10.6.2
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 __DIR__ . '/views/html-notice-custom.php';
}
}
}
}
}