Tribe__Field::do_field_value()
returns the field’s value
Return
(string) the field value
Source
File: src/Tribe/Field.php
public function do_field_value() {
$return = '';
if ( $this->value ) {
$return = ' value="' . $this->value . '"';
}
return apply_filters( 'tribe_field_value', $return, $this->value, $this );
}