add_filter( 'attachment_fields_to_edit', 'p1on_attachment_fields_to_edit', null, 2 );
function p1on_attachment_fields_to_edit( $form_fields, $post ){
$form_fields['carousel_price'] = array(
'label' => 'Цена (если нужно)',
'input' => '',
'value' => get_post_meta( $post->ID, 'carousel_price', true ),
);
}