Adding "Select your category" in the select list (category list)
-
My idea is to add “Select your category” in the select list (category list), instead of showing one of the category from the category list.
<select class="selectpicker" name="coupon_cat" id="category"value="> <?php $args = array ( 'exclude'=> array(12) ); $categories = get_categories($args); foreach($categories as $category) { ?> <option value="<?php echo $category->term_id;?>"> <?php echo $category->name;?></option> <?php } ?> </select>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Adding "Select your category" in the select list (category list)’ is closed to new replies.