Tribe__Field::do_field_value()

returns the field’s value

Contents


Return

(string) the field value


Top ↑

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 );
		}