Automattic\WooCommerce\Internal\Admin\Orders

Edit::add_order_specific_meta_box()privateWC 1.0

Hooks meta box for order specific meta.

Method of the class: Edit{}

No Hooks.

Return

null. Nothing (null).

Usage

// private - for code of main (parent) class only
$result = $this->add_order_specific_meta_box();

Edit::add_order_specific_meta_box() code WC 8.7.0

private function add_order_specific_meta_box() {
	add_meta_box(
		'order_custom',
		__( 'Custom Fields', 'woocommerce' ),
		array( $this, 'render_custom_meta_box' ),
		$this->screen_id,
		'normal'
	);
}