ff1dcdc5f4
・echo時にエスケープするようメソッド修正 ・HTMLタグないのエスケープをesc_attr()に変更
22 lines
1001 B
PHP
22 lines
1001 B
PHP
<div class="order_setting_custom_field_box">
|
|
<?php if ( isset( $this->order_field ) && count( $this->order_field ) > 0 ): ?>
|
|
<dl class="apop_setting_list_dd">
|
|
<?php foreach ( $this->order_field as $type => $items ): ?>
|
|
<dt><?php echo esc_html( $this->labels[ $type ] ); ?></dt>
|
|
<dd>
|
|
<ul>
|
|
<?php foreach ( $items as $item ): ?>
|
|
<?php if ( ! empty( $item ) ): ?>
|
|
<li><label><?php echo esc_html( $item ); ?></label>
|
|
<input type="text"
|
|
name="<?php echo esc_attr( APOP_CUSTOM_FIELD_PREFIX . $item ); ?>"
|
|
value="<?php echo esc_attr( $this->get_custom_field_data( $item ) ); ?>"/>
|
|
</li>
|
|
<?php endif; ?>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
</dd>
|
|
<?php endforeach; ?>
|
|
</dl>
|
|
<?php endif; ?>
|
|
</div>
|