WC_AJAX::order_delete_meta()private staticWC 1.0

Reimplementation of WP core's wp_ajax_delete_meta method to support order custom meta updates with custom tables.

Method of the class: WC_AJAX{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = WC_AJAX::order_delete_meta() : void;

WC_AJAX::order_delete_meta() code WC 8.7.0

private static function order_delete_meta() : void {
	wc_get_container()->get( CustomMetaBox::class )->delete_meta_ajax();
}