Widget development – Drop down options won’t save
Danny, this is pretty much lifted straight from a plug-in I’ve made: <?php function form($instance){ $instance = wp_parse_args( (array) $instance, $this->w_arg ); ?> <p> <select id=”<?php echo $this->get_field_id(‘order’); ?>” name=”<?php echo $this->get_field_name(‘order’); ?>” type=”text”> <option value=”asc” <?php selected($instance[‘order’], ‘asc’); ?>>ASC </option> <option value=”desc” <?php selected($instance[‘order’], ‘desc’);?>>DESC </option> </select> </p> <?php } ?> Without seeing the … Read more