Osclass 在类别选择中搜索城市的下拉选择

Osclass Drop-down selection for city at search insted of category selection

脚本是 osclasss

这是原代码

?php  if ( osc_count_categories() ) { ?>
            <div class="cell selector">
                <?php osc_categories_select('sCategory', null, __('Select a category', 'bender')) ; ?>
            </div>
            <div class="cell reset-padding">
        <?php  } else { ?>
            <div class="cell">
        <?php  } ?>
            <button class="ui-button ui-button-big js-submit"><?php _e("Search", 'bender');?></button>
        </div>

如何编辑此代码以使用户 select 成为搜索城市而不是类别?

谢谢大家

我找到了解决方案 =) 感谢https://whosebug.com/users/3465265/key

只需添加此代码

<?php $aCities = City::newInstance()->listAll(); ?>
<?php if(count($aCities) > 0 ) { ?>
<select name="sCity" id="sCity">
<option value=""><?php _e('Select a city...')?></option>
    <?php foreach($aCities as $city) { ?>
    <option value="<?php echo $city['s_name'] ; ?>"><?php echo $city['s_name'] ; ?></option>
    <?php } ?>
</select>
<?php } ?>