<?php
if ( is_array( $value ) ) {
$value = implode( ',', $value );
}
$attributes = array();
$attributes['type'] = 'hidden';
$attributes['value'] = $value;
$attributes = PodsForm::merge_attributes( $attributes, $name, $form_field_type, $options );
?>
<input<?php PodsForm::attributes( $attributes, $name, $form_field_type, $options ); ?> />