Здравствуйте. Об этом упоминается в документации на странице
Condition Types. Попробуйте так:
add_action( 'carbon_fields_register_fields', 'crb_attach_post_meta' );
function crb_attach_post_meta() {
Container::make( 'post_meta', 'Custom Data' )
->where( 'post_type', '=', 'post' )
->where( 'post_format', '=', 'video' )
->where( 'post_term', '=', array(
'field' => 'slug',
'value' => 'broder',
'taxonomy' => 'category',
) )
->add_fields( array(
Field::make( 'map', 'crb_location' )
->set_position( 37.423156, -122.084917, 14 ),
Field::make( 'sidebar', 'crb_custom_sidebar' ),
Field::make( 'image', 'crb_photo' ),
));
}