PluginProbe
Event Post / 5.0
Event Post v5.0
6.1.1 6.1.0 6.0.1 6.0.0 5.12.0 trunk 3.9 4.0 4.2 4.3 4.4 4.5 5.0 5.1 5.10.0 5.10.1 5.10.2 5.10.3 5.10.4 5.11.0 5.11.1 5.2 5.5 5.6 5.6.1 All 46 releases
← All changes | inc/widget.php +3 -3 5.25.0 View file →
@@ -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>