WC_Admin::disable_webhook_post_export()publicWC 3.6.2

Disable WXR export of scheduled action posts.

Method of the class: WC_Admin{}

No Hooks.

Return

Array.

Usage

$WC_Admin = new WC_Admin();
$WC_Admin->disable_webhook_post_export( $args );
$args(array) (required)
Scheduled action post type registration args.

Changelog

Since 3.6.2 Introduced.

WC_Admin::disable_webhook_post_export() code WC 8.7.0

public function disable_webhook_post_export( $args ) {
	$args['can_export'] = false;
	return $args;
}