Automattic\WooCommerce\Internal\Admin\Orders
Edit::add_order_specific_meta_box()
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() Edit::add order specific meta box code WC 9.4.2
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' ); }