|
11 | 11 | * Plugin Name: Genesis Widget Column Classes |
12 | 12 | * Plugin URI: https://wordpress.org/plugins/genesis-widget-column-classes/ |
13 | 13 | * Description: Add Genesis (old Bootstrap) column classes to widgets |
14 | | - * Version: 1.2.3-rc1 |
| 14 | + * Version: 1.2.3 |
15 | 15 | * Author: Jory Hogeveen |
16 | 16 | * Author URI: http://www.keraweb.nl |
17 | 17 | * Text Domain: genesis-widget-column-classes |
@@ -175,15 +175,12 @@ public function init() { |
175 | 175 | add_action( 'admin_notices', array( $this, 'action_genesis_notice' ) ); |
176 | 176 | add_action( 'wp_ajax_' . $this->noticeKey, array( $this, 'action_ignore_genesis_notice' ) ); |
177 | 177 | } |
178 | | - |
179 | | - // Dev. |
180 | | - add_filter( 'screen_settings', array( $this, 'filter_screen_settings' ), 10, 2 ); |
181 | 178 | } |
182 | 179 |
|
183 | | - // widget_form_callback instead of in_widget_form because we want these fields to show BEFORE the other fields |
184 | | - add_filter( 'widget_form_callback', array( $this, 'filter_widget_form_extend' ), 10, 2 ); |
| 180 | + // widget_form_callback instead of in_widget_form because we want these fields to show BEFORE the other fields. |
| 181 | + add_filter( 'widget_form_callback', array( $this, 'filter_widget_form_extend' ), 1, 2 ); |
185 | 182 | add_filter( 'widget_update_callback', array( $this, 'filter_widget_update_callback' ), 10, 2 ); |
186 | | - add_filter( 'dynamic_sidebar_params', array( $this, 'filter_dynamic_sidebar_params' ), 99999 ); // Make sure to be the last one |
| 183 | + add_filter( 'dynamic_sidebar_params', array( $this, 'filter_dynamic_sidebar_params' ), 99999 ); // Make sure to be the last one. |
187 | 184 | } |
188 | 185 |
|
189 | 186 | /** |
|
0 commit comments