Automattic\WooCommerce\Internal\Admin\Orders

Edit::render_meta_boxes()privateWC 1.0

Helper function to render meta boxes.

Method of the class: Edit{}

No Hooks.

Return

null. Nothing (null).

Usage

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

Edit::render_meta_boxes() code WC 8.7.0

<?php
private function render_meta_boxes() {
	?>
	<div id="postbox-container-1" class="postbox-container">
		<?php do_meta_boxes( $this->screen_id, 'side', $this->order ); ?>
	</div>
	<div id="postbox-container-2" class="postbox-container">
		<?php
		do_meta_boxes( $this->screen_id, 'normal', $this->order );
		do_meta_boxes( $this->screen_id, 'advanced', $this->order );
		?>
	</div>
	<?php
}