Tribe__Field::wrapped_html()
Generate a wrapped html field.
This is useful to print some HTML that should be inline with the other fieldsets.
Return
(string) The field markup.
Source
File: src/Tribe/Field.php
public function wrapped_html() {
$field = $this->do_field_start();
$field .= $this->do_field_label();
$field .= $this->do_field_div_start();
$field .= $this->html;
$field .= $this->do_field_div_start();
$field .= $this->do_field_end();
return $field;
}