我有一个表格,用户必须填写他们的信息。我使用的主题,必须经过选择。我将其更改为多选,因为我们需要人们能够选择多个值。
然而,经过一些用户测试,我们发现许多人不知道如何在选择框中选择多个值。所以我想最好是把它们做成复选框。我一直在想我到底怎么做,但我似乎不知道怎么做。
<div class="form-option property-type-field-wrapper">
<label for="type"><?php _e( \'Useage\', \'framework\' ); ?></label>
<span class="selectwrap">
<select multiple name="type[]" id="type" class="src_select">
<?php
if ( inspiry_is_edit_property() ) {
global $target_property;
edit_form_hierarchical_options( $target_property->ID, \'property-type\' );
} else {
?>
<?php
/*
* Property Type Terms
*/
$property_types_terms = get_terms( array(
\'taxonomy\' => "property-type",
\'orderby\' => \'name\',
\'order\' => \'ASC\',
\'hide_empty\' => false,
\'parent\' => 0
)
);
generate_id_based_hirarchical_options( "property-type", $property_types_terms, - 1 );
}
?>
</select>
</span>
有谁认为他们能给我一个暗示吗?