Use new code style
This commit is contained in:
@ -7,38 +7,46 @@
|
||||
?>
|
||||
<li class="<?php echo esc_attr(trim($field->wrapper_classes)); ?>" <?php echo $field->get_wrapper_html_attributes(); ?>>
|
||||
|
||||
<div class="wu-block wu-w-full">
|
||||
<div class="wu-block wu-w-full">
|
||||
|
||||
<?php
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Adds the partial title template.
|
||||
* @since 2.0.0
|
||||
*/
|
||||
wu_get_template('admin-pages/fields/partials/field-title', array(
|
||||
'field' => $field,
|
||||
));
|
||||
/**
|
||||
* Adds the partial title template.
|
||||
*
|
||||
* @since 2.0.0
|
||||
*/
|
||||
wu_get_template(
|
||||
'admin-pages/fields/partials/field-title',
|
||||
array(
|
||||
'field' => $field,
|
||||
)
|
||||
);
|
||||
|
||||
?>
|
||||
?>
|
||||
|
||||
<a class="form-control <?php echo esc_attr($field->classes); ?>" type="<?php echo esc_attr($field->type); ?>" <?php echo $field->get_html_attributes(); ?>>
|
||||
<a class="form-control <?php echo esc_attr($field->classes); ?>" type="<?php echo esc_attr($field->type); ?>" <?php echo $field->get_html_attributes(); ?>>
|
||||
|
||||
<?php echo $field->display_value; ?>
|
||||
<?php echo $field->display_value; ?>
|
||||
|
||||
</a>
|
||||
</a>
|
||||
|
||||
<?php
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Adds the partial title template.
|
||||
* @since 2.0.0
|
||||
*/
|
||||
wu_get_template('admin-pages/fields/partials/field-description', array(
|
||||
'field' => $field,
|
||||
));
|
||||
/**
|
||||
* Adds the partial title template.
|
||||
*
|
||||
* @since 2.0.0
|
||||
*/
|
||||
wu_get_template(
|
||||
'admin-pages/fields/partials/field-description',
|
||||
array(
|
||||
'field' => $field,
|
||||
)
|
||||
);
|
||||
|
||||
?>
|
||||
?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</li>
|
||||
|
Reference in New Issue
Block a user