使用wp_dropdown_categories

时间:2018-09-06 13:33:42

标签: wordpress

如果我在一页中使用两次,我的类别列表将合并到一起!

我要在使用后重置查询或清空数据。

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;

}

感谢帮助。

0 个答案:

没有答案