Files
szkoleniauryzaj.pl/wp-content/plugins/flexible-checkout-fields/templates/fields/paragraph.php
2024-11-10 21:08:49 +01:00

20 lines
614 B
PHP

<?php
/**
* This template can be overridden by copying it to yourtheme/flexible-checkout-fields/fields/paragraph.php
*
* @var string $key Field ID.
* @var mixed[] $args Custom attributes for field.
* @var mixed $value Field value.
* @var string[] $custom_attributes .
*
* @package Flexible Checkout Fields
*/
?>
<p class="form-paragraph form-row <?php echo esc_attr( $args['class'] ); ?>"
id="<?php echo esc_attr( $key ); ?>_field"
data-priority="<?php echo esc_attr( $args['priority'] ); ?>"
data-fcf-field="<?php echo esc_attr( $key ); ?>">
<?php echo wp_kses_post( $args['label'] ); ?>
</p>