sections, $parent->args ); $this->parent = $parent; $this->field = $field; $this->value = $value; } /** * Field Render Function. * * Takes the vars and outputs the HTML for the field in the settings * * @since ReduxFramework 1.0.0 */ function render() { echo '
'; if ( !empty( $this->field['include'] ) && file_exists( $this->field['include'] ) ) { include( $this->field['include'] ); } if ( !empty( $this->field['content'] ) && isset( $this->field['content'] ) ) { echo $this->field['content']; } do_action('redux-field-raw-'.$this->parent->args['opt_name'].'-'.$this->field['id']); echo '
'; } }