Tribe__Field::do_tool_tip()
returns the field’s tooltip/description
Return
(string) the field tooltip
Source
File: src/Tribe/Field.php
public function do_tool_tip() {
$return = '';
if ( $this->tooltip ) {
$return = '<p class="tooltip description">' . $this->tooltip . '</p>';
}
return apply_filters( 'tribe_field_tooltip', $return, $this->tooltip, $this );
}