Isset 具有多个 select 下拉菜单和 bootstrap

Isset with multi select dropdown and bootstrap

我有一个带有搜索表单的 wordpress 网站,该表单基于表单字段 selection 搜索帖子,用于自定义字段等。它工作正常,但是在搜索结果页面上我有一个精确的副本除了我试图根据搜索 query/url 字符串预设 selections 的形式。

我正在使用常规 select 下拉菜单,并将其设置为 "multiple",以便它可以使用 bootstraps multiselect 和复选框。我问了一个类似的问题 但那是针对复选框的,即使 bootstrap multiselect 使用复选框,我仍然必须先使用 select 下拉列表。

所以在尝试了几件事之后,我已经很接近了,但是 运行 遇到了几个问题。在下面的代码中,我做了注释以进一步准确解释我的意思。

<select name="property_type[]" id="pt-multi" class="form-control multi-select2" multiple="multiple">
<?php
$terms = get_terms( "property-type", array( 'hide_empty' => 0 ) );
$count = count($terms);

if ( $count > 0  ){
        echo "<option value='Any'>All</option>";

        foreach ( $terms as $term ) {

if (isset($_GET['property_type'])) {
        foreach ($_GET['property_type'] as $proptypes) {

// FIRST EXAMPLE
$selected .= ($proptypes === $term->slug) ? "selected" : "";  // shows first correct selected value but also selects everything after it up until the second correct value, which it doesn't select.
//$selected = ($proptypes === $term->slug) ? "selected" : "";   // shows only last correct selected value
//if ($proptypes === $term->slug) { $selected = 'selected'; }   // shows first correct selected value then selects every value after, even if it wasn't selected

// SECOND EXAMPLE
//$selected .= ($proptypes === $term->slug) ? "selected" : "";  // shows first correct selected value then selects every value after, even if it wasn't selected
//$selected = ($proptypes === $term->slug) ? "selected" : "";   // shows only last correct selected value
//if ($proptypes === $term->slug) { $selected = 'selected'; }   // shows first correct selected value then selects every value after, even if it wasn't selected


    } 
}
      echo "<option value='" . $term->slug . "' " . $selected . ">" . $term->name . "</option>";                  // FIRST EXAMPLE

      //echo "<option value='" . $term->slug . "' " . ($selected?' selected':'') . ">" . $term->name . "</option>"; // SECOND EXMAPLE 

    }
}
?>
</select>

创建数组并使用 in_array() 进行检查。

<select name="property_type[]" id="pt-multi" class="form-control multi-select2" multiple="multiple">
<?php
$terms = get_terms("property-type", array('hide_empty' => 0));
$count = count($terms);

// Setup an array of $proptypes
$proptypes = array();
if (isset($_GET['property_type'])) {
    foreach ($_GET['property_type'] as $proptype) {
        $proptypes[] = $proptype;
    }
}

if ($count > 0) {
    echo "<option value='Any'>All</option>";
    foreach ($terms as $term) {
        $selected = (in_array($term->slug, $proptypes)) ? 'selected' : '';
        echo "<option value='" . $term->slug . "' " . $selected . ">" . $term->name . "</option>";
    }
}

?>
</select>