'mm/dd/yy', ); $view_options = ( ! empty( $this->field['settings'] ) ) ? $this->field['settings'] : array(); $view_options = wp_parse_args( $view_options, $default_settings ); echo wp_kses_post( $this->field_before() ); if ( ! empty( $this->field['from_to'] ) ) { $args = wp_parse_args( $this->field, array( 'text_from' => 'From', 'text_to' => 'To', ) ); $value = wp_parse_args( $this->value, array( 'from' => '', 'to' => '', ) ); echo ''; echo ''; } else { echo 'field_attributes() ) . '/>'; } echo '
'; echo wp_kses_post( $this->field_after() ); } /** * Enqueue Date Picker. * * @return void */ public function enqueue() { if ( ! wp_script_is( 'jquery-ui-datepicker' ) ) { wp_enqueue_script( 'jquery-ui-datepicker' ); } } } }