Если ключи для полей заранее известны и они фиксированные то выводите с явным указанием ключей без цикла
public function render_metabox($post)
{
$metabox_fields = $this->custom_fields_metabox();
?>
<table class="form-table custom-info">
<tbody>
<tr>
<th><?php echo $metabox_fields['price_field']['title']; ?></th>
<th><?php echo $metabox_fields['sale_field']['title']; ?></th>
</tr>
<tr>
<td><?php echo $metabox_fields['price_field']['value']; ?></td>
<td><?php echo $metabox_fields['sale_field']['value']; ?></td>
</tr>
</tbody>
<tbody>
<tr>
<th><?php echo $metabox_fields['material_field']['title']; ?></th>
<th><?php echo $metabox_fields['material_field']['value']; ?></th>
</tr>
</tbody>
<?
}