| @@ -47,10 +47,10 @@ | ||
| 47 | 47 | $widget_num = $tmp_id[1]; |
| 48 | 48 | |
| 49 | 49 | $widget_id = ! empty( $instance['widget_id'] ) ? $instance['widget_id'] : ''; |
| 50 | 50 | |
| 51 | - // use the widget container name as the placement, suffix the widget_num to make it unique | |
| 52 | - $placement=$args["id"]."-".$widget_num; | |
| 51 | + // Prefix each placement with "WP Right Rail". Grab the ID of the container (i.e. the sidebar) and append 'widget_num' to make it unique. | |
| 52 | + $placement = "WP Right Rail (". $args["id"]."-".$widget_num.")"; | |
| 53 | 53 | |
| 54 | 54 | echo $before_widget; |
| 55 | 55 | |
| 56 | 56 | if ( $title ){ |
| @@ -81,9 +81,9 @@ | ||
| 81 | 81 | $instance = wp_parse_args( (array) $instance ); |
| 82 | 82 | $widget_id = esc_attr( $instance['widget_id'] ); |
| 83 | 83 | ?> |
| 84 | 84 | <p> |
| 85 | - <label for="<?php echo $this->get_field_id('widget_id'); ?>"><?php _e('Widget ID:'); ?> | |
| 85 | + <label for="<?php echo $this->get_field_id('widget_id'); ?>"><?php _e('Mode (Widget ID):'); ?> | |
| 86 | 86 | <input class="widefat" id="<?php echo $this->get_field_id('widget_id'); ?>" name="<?php echo $this->get_field_name('widget_id'); ?>" type="text" value="<?php echo esc_attr($widget_id); ?>" /> |
| 87 | 87 | </label> |
| 88 | 88 | </p> |
| 89 | 89 | <?php |