LLMS_Form_Field::render()

Render/output the field’s html.


Return Return

(void)


Top ↑

Source Source

File: includes/forms/class-llms-form-field.php

1015
1016
1017
1018
1019
1020
1021
1022
1023
public function render() {
 
    if ( ! $this->html ) {
        $this->get_html();
    }
 
    echo $this->html;
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
5.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.