Tribe__Field::do_field_div_start()

returns the field’s div start

Contents


Return

(string) the field div start


Top ↑

Source

File: src/Tribe/Field.php

		public function do_field_div_start() {
			$return = '<div class="tribe-field-wrap">';

			if ( true === $this->tooltip_first ) {
				$return .= $this->do_tool_tip();
				// and empty it to avoid it from being printed again
				$this->tooltip = '';
			}

			return apply_filters( 'tribe_field_div_start', $return, $this );
		}