'',
'rows' => 6,
'autocomplete' => false,
'readonly' => false,
'class' => '',
);
$this->field = wp_parse_args( $this->field, $defaults );
}
/**
* Field Render Function.
* Takes the vars and outputs the HTML for the field in the settings
*
* @since ReduxFramework 1.0.0
* */
public function render() {
$readonly = ( true === boolval( $this->field['readonly'] ) ) ? ' readonly' : '';
$autocomplete = ( true === boolval( $this->field['autocomplete'] ) ) ? 'on' : 'off';
?>