Как-то так:
<?php $custom_field_content = array();
if( osc_count_item_meta() >= 1 ) {
while ( osc_has_item_meta() ) {
if(osc_item_meta_value() !="") {
$custom_field_name_content[osc_item_meta_slug()] = osc_item_meta_name();
$custom_field_value_content[osc_item_meta_slug()] = osc_item_meta_value();
}
}
} ?>
<?php echo $custom_field_name_content['названиеполя1'] ;?>: <strong><?php echo $custom_field_value_content['названиеполя1'] ;?></strong>
<?php echo $custom_field_name_content['названиеполя2'] ;?>: <strong><?php echo $custom_field_value_content['названиеполя2'] ;?></strong>