WC_AJAX::order_add_meta()private staticWC 1.0

Reimplementation of WP core's wp_ajax_add_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_add_meta();

WC_AJAX::order_add_meta() code WC 8.7.0

private static function order_add_meta() {
	wc_get_container()->get( CustomMetaBox::class )->add_meta_ajax();
}