| @@ -110,9 +110,9 @@ | ||
| 110 | 110 | |
| 111 | 111 | <p> |
| 112 | 112 | <label for="<?php echo $this->get_field_id('cat'); ?>"> |
| 113 | 113 | <span class="dashicons dashicons-category"></span> |
| 114 | - <?php _e('Only in:','event-post'); ?> | |
| 114 | + <?php _e('Only in :','event-post'); ?> | |
| 115 | 115 | <select class="widefat" id="<?php echo $this->get_field_id('cat'); ?>" name="<?php echo $this->get_field_name('cat'); ?>"> |
| 116 | 116 | <option value=''><?php _e('All categories','event-post') ?></option> |
| 117 | 117 | <?php foreach($cats as $_cat){ ?> |
| 118 | 118 | <option value="<?php echo $_cat->slug; ?>" <?php selected($_cat->slug, $instance['cat'], true); ?>><?php echo $_cat->cat_name; ?></option> |
| @@ -131,9 +131,9 @@ | ||
| 131 | 131 | |
| 132 | 132 | <p> |
| 133 | 133 | <label for="<?php echo $this->get_field_id('tag'); ?>"> |
| 134 | 134 | <span class="dashicons dashicons-tag"></span> |
| 135 | - <?php _e('Only in:','event-post'); ?> | |
| 135 | + <?php _e('Only in :','event-post'); ?> | |
| 136 | 136 | <select class="widefat" id="<?php echo $this->get_field_id('tag'); ?>" name="<?php echo $this->get_field_name('tag'); ?>"> |
| 137 | 137 | <option value=''><?php _e('All tags','event-post') ?></option> |
| 138 | 138 | <?php foreach($tags as $_tag){?> |
| 139 | 139 | <option value="<?php echo $_tag->slug; ?>" <?php selected($_tag->slug, $instance['tag'], true); ?>><?php echo $_tag->name; ?></option> |
| @@ -170,9 +170,9 @@ | ||
| 170 | 170 | </p> |
| 171 | 171 | |
| 172 | 172 | <p> |
| 173 | 173 | <label for="<?php echo $this->get_field_id('order'); ?>"> |
| 174 | - <?php _e('Order:','event-post'); ?> | |
| 174 | + <?php _e('Order :','event-post'); ?> | |
| 175 | 175 | <select class="widefat" id="<?php echo $this->get_field_id('order'); ?>" name="<?php echo $this->get_field_name('order'); ?>"> |
| 176 | 176 | <option value='DESC' <?php selected('DESC', $instance['order'], true); ?>><?php _e('Reverse chronological','event-post') ?></option> |
| 177 | 177 | <option value='ASC' <?php selected('ASC', $instance['order'], true); ?>><?php _e('Chronological','event-post') ?></option> |
| 178 | 178 | </select> |