ff1dcdc5f4
・echo時にエスケープするようメソッド修正 ・HTMLタグないのエスケープをesc_attr()に変更
11 lines
671 B
PHP
11 lines
671 B
PHP
<?php if ( isset( $order_target, $order_target_type ) ): ?>
|
|
<ul class="sort_menu_list"
|
|
data-order_target="<?php echo esc_attr( $order_target ); ?>">
|
|
<li><label>
|
|
<input class="sort_menu" type="radio" name="<?php echo esc_attr( $order_target_type ); ?>"
|
|
value="1"<?php checked( $order_target, 1 ); ?>>標準+カスタムフィールドソート</label></li>
|
|
<li><label>
|
|
<input class="sort_menu" type="radio" name="<?php echo esc_attr( $order_target_type ); ?>"
|
|
value="2"<?php checked( $order_target, 2 ); ?>>ドラッグソート</label></li>
|
|
</ul>
|
|
<?php endif;
|