如果我在一页中使用两次,我的类别列表将合并到一起!
我要在使用后重置查询或清空数据。
function dropdownListCities( $selected=0 ){
$id = "opalestate_location".rand();
$args = array(
'show_option_none' => 'Select City',
'id' => 'search'.$id,
'class' => 'form-control',
'name' => 'location_search',
'show_count' => 0,
'hierarchical' => '',
'selected' => $selected,
'value_field' => 'slug',
'taxonomy' => 'opalestate_location',
'hide_empty' =>0
);
$dropdown = wp_dropdown_categories( $args );
return $dropdown;
}
感谢帮助。