Files
POST_ORDER_BY_ARCHIVE/template/order_parts_menu.php
T
nobu b8dcf1c44c ARCHIVE POST ORDER PLUS
翻訳対応
検索のカスタムフィールド選択バグ修正
2021-07-11 17:41:03 +09:00

11 lines
700 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 ); ?>><?php _e('Standard + custom field sort', APOP_DOMAIN); ?></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 ); ?>><?php _e('Drag sort', APOP_DOMAIN); ?></label></li>
</ul>
<?php endif;