Skip to content

Commit 90b9e38

Browse files
committed
v1.2.3
1 parent f30b4db commit 90b9e38

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

genesis-widget-column-classes.php

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Plugin Name: Genesis Widget Column Classes
1212
* Plugin URI: https://wordpress.org/plugins/genesis-widget-column-classes/
1313
* Description: Add Genesis (old Bootstrap) column classes to widgets
14-
* Version: 1.2.3-rc1
14+
* Version: 1.2.3
1515
* Author: Jory Hogeveen
1616
* Author URI: http://www.keraweb.nl
1717
* Text Domain: genesis-widget-column-classes
@@ -175,15 +175,12 @@ public function init() {
175175
add_action( 'admin_notices', array( $this, 'action_genesis_notice' ) );
176176
add_action( 'wp_ajax_' . $this->noticeKey, array( $this, 'action_ignore_genesis_notice' ) );
177177
}
178-
179-
// Dev.
180-
add_filter( 'screen_settings', array( $this, 'filter_screen_settings' ), 10, 2 );
181178
}
182179

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 );
185182
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.
187184
}
188185

189186
/**

0 commit comments

Comments
 (0)