wc_add_notice( string $message, string $notice_type = 'success', array $data = array() )

Add and store a notice.


Description Description


Parameters Parameters

$message

(Required) The text to display in the notice.

$notice_type

(Optional) The name of the notice type - either error, success or notice.

Default value: 'success'

$data

(Optional) notice data.

Default value: array()


Top ↑

Source Source

File: includes/wc-notice-functions.php

function wc_add_notice( $message, $notice_type = 'success', $data = array() ) {
	if ( ! did_action( 'woocommerce_init' ) ) {
		wc_doing_it_wrong( __FUNCTION__, __( 'This function should not be called before woocommerce_init.', 'woocommerce' ), '2.3' );
		return;
	}

	$notices = WC()->session->get( 'wc_notices', array() );

	// Backward compatibility.
	if ( 'success' === $notice_type ) {
		$message = apply_filters( 'woocommerce_add_message', $message );
	}

	$message = apply_filters( 'woocommerce_add_' . $notice_type, $message );

	if ( ! empty( $message ) ) {
		$notices[ $notice_type ][] = array(
			'notice' => apply_filters( 'woocommerce_add_' . $notice_type, $message ),
			'data'   => $data,
		);
	}

	WC()->session->set( 'wc_notices', $notices );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.1 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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