field, array( 'top_icon' => '', 'right_icon' => '', 'bottom_icon' => '', 'left_icon' => '', 'all_icon' => '', 'top_placeholder' => esc_html__( 'top', 'post-carousel' ), 'right_placeholder' => esc_html__( 'right', 'post-carousel' ), 'bottom_placeholder' => esc_html__( 'bottom', 'post-carousel' ), 'left_placeholder' => esc_html__( 'left', 'post-carousel' ), 'all_placeholder' => esc_html__( 'all', 'post-carousel' ), 'top' => true, 'left' => true, 'bottom' => true, 'right' => true, 'unit' => true, 'min' => '-50', 'show_units' => true, 'all' => false, 'units' => array( 'px', '%', 'em' ), ) ); $default_values = array( 'top' => '', 'right' => '', 'bottom' => '', 'left' => '', 'all' => '', 'unit' => 'px', 'min' => '', ); $value = wp_parse_args( $this->value, $default_values ); $unit = ( count( $args['units'] ) === 1 && ! empty( $args['unit'] ) ) ? $args['units'][0] : ''; $is_unit = ( ! empty( $unit ) ) ? ' spf--is-unit' : ''; echo wp_kses_post( $this->field_before() ); $min = ( isset( $args['min'] ) ) ? ' min="' . $args['min'] . '"' : ''; echo '
'; if ( ! empty( $args['all'] ) ) { $placeholder = ( ! empty( $args['all_placeholder'] ) ) ? ' placeholder="' . $args['all_placeholder'] . '"' : ''; echo '
'; echo ( ! empty( $args['all_icon'] ) ) ? '' . wp_kses_post( $args['all_icon'] ) . '' : ''; echo ''; echo ( $unit ) ? '' . wp_kses_post( $args['units'][0] ) . '' : ''; echo '
'; } else { $properties = array(); foreach ( array( 'top', 'right', 'bottom', 'left' ) as $prop ) { if ( ! empty( $args[ $prop ] ) ) { $properties[] = $prop; } } $properties = ( array( 'right', 'left' ) === $properties ) ? array_reverse( $properties ) : $properties; foreach ( $properties as $property ) { $placeholder = ( ! empty( $args[ $property . '_placeholder' ] ) ) ? ' placeholder="' . $args[ $property . '_placeholder' ] . '"' : ''; echo '
'; echo ( ! empty( $args[ $property . '_icon' ] ) ) ? '' . wp_kses_post( $args[ $property . '_icon' ] ) . '' : ''; echo ''; echo ( $unit ) ? '' . wp_kses_post( $args['units'][0] ) . '' : ''; echo '
'; } } if ( ! empty( $args['unit'] ) && ! empty( $args['show_units'] ) && count( $args['units'] ) > 1 ) { echo '
'; echo ''; echo '
'; } echo '
'; echo wp_kses_post( $this->field_after() ); } } }