DropDown box for Categories
-
I am using wordpress theme which uses dropdown box for categories to show in featured slider due to which only one category at a time is selected. All i want to include all categories in featured slider.
code is<select name=”cp_featuredCatID” class=”selectCat”>
<?php $cats = get_categories(‘hide_empty=0’); foreach($cats as $cat) { ?>
<option value=”<?php echo $cat->cat_ID; ?>”<?php selected($cat->cat_ID, $this->options[“featuredCatID”]); ?>><?php echo $cat->cat_name; ?></option>
<?php } ?></select>My question is, how to change this dropdown box to text box to manually insert categories with th option to store values.
Thanks in advance.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘DropDown box for Categories’ is closed to new replies.