WC_Install::page_createdpublic staticWC 5.6.0

When pages are created, we might want to take some action. In this case we want to set an option when refund and returns page is created.

Method of the class: WC_Install{}

No Hooks.

Returns

null. Nothing (null).

Usage

$result = WC_Install::page_created( $page_id, $page_data );
$page_id(int) (required)
ID of the page.
$page_data(array) (required)
The data of the page created.

Changelog

Since 5.6.0 Introduced.

WC_Install::page_created() code WC 10.3.5

public static function page_created( $page_id, $page_data ) {
	if ( 'refund_returns' === $page_data['post_name'] ) {
		delete_option( 'woocommerce_refund_returns_page_created' );
		add_option( 'woocommerce_refund_returns_page_created', $page_id, '', false );
	}
}