9 <label
for=
"<?php echo $this->get_field_id(); ?>" class=
"<?php echo $this->get_label_class(); ?>"><?php
11 echo
'<span class="gv-label">'.$this->get_field_label().
'</span>';
23 if( isset( $override_input ) ) {
28 <select name=
"<?php echo esc_attr( $this->name ); ?>" id=
"<?php echo $this->get_field_id(); ?>">
29 <?php
foreach( $this->field[
'options'] as
$value =>
$label ) : ?>
30 <option value=
"<?php echo esc_attr( $value ); ?>" <?php selected(
$value, $this->value,
true ); ?>><?php echo esc_html(
$label ); ?></option>
get_field_desc()
Retrieve field description.
Modify option field type by extending this class.
render_input( $override_input=null)