Classic Widgets - Version 0.2

Version Description

Update filter name.

Download this release

Release Info

Developer azaozz
Plugin Icon wp plugin Classic Widgets
Version 0.2
Comparing to
See all releases

Code changes from version 0.1 to 0.2

Files changed (2) hide show
  1. classic-widgets.php +2 -2
  2. readme.txt +4 -1
classic-widgets.php CHANGED
@@ -5,7 +5,7 @@
5
  * Plugin Name: Classic Widgets
6
  * Plugin URI: https://wordpress.org/plugins/classic-widgets/
7
  * Description: Enables the classic widgets settings screens in Appearance - Widgets and the Customizer. Disables the block editor from managing widgets.
8
- * Version: 0.1
9
  * Author: WordPress Contributors
10
  * Author URI: https://github.com/WordPress/classic-widgets/
11
  * License: GPLv2 or later
@@ -30,4 +30,4 @@ if ( ! defined( 'ABSPATH' ) ) {
30
  // Disables the block editor from managing widgets in the Gutenberg plugin.
31
  add_filter( 'gutenberg_use_widgets_block_editor', '__return_false' );
32
  // Disables the block editor from managing widgets.
33
- add_filter( 'wp_use_widgets_block_editor', '__return_false' );
5
  * Plugin Name: Classic Widgets
6
  * Plugin URI: https://wordpress.org/plugins/classic-widgets/
7
  * Description: Enables the classic widgets settings screens in Appearance - Widgets and the Customizer. Disables the block editor from managing widgets.
8
+ * Version: 0.2
9
  * Author: WordPress Contributors
10
  * Author URI: https://github.com/WordPress/classic-widgets/
11
  * License: GPLv2 or later
30
  // Disables the block editor from managing widgets in the Gutenberg plugin.
31
  add_filter( 'gutenberg_use_widgets_block_editor', '__return_false' );
32
  // Disables the block editor from managing widgets.
33
+ add_filter( 'use_widgets_block_editor', '__return_false' );
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: wordpressdotorg, hellofromtonya, azaozz
3
  Tags: gutenberg, disable, disable gutenberg, editor, classic widgets
4
  Requires at least: 4.9
5
  Tested up to: 5.8
6
- Stable tag: 0.1
7
  Requires PHP: 5.6 or later
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -18,6 +18,9 @@ Once activated, this plugin restores the previous widgets settings screens and d
18
 
19
  == Changelog ==
20
 
 
 
 
21
  = 0.1 =
22
  Initial release.
23
 
3
  Tags: gutenberg, disable, disable gutenberg, editor, classic widgets
4
  Requires at least: 4.9
5
  Tested up to: 5.8
6
+ Stable tag: 0.2
7
  Requires PHP: 5.6 or later
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
18
 
19
  == Changelog ==
20
 
21
+ = 0.2 =
22
+ Update filter name.
23
+
24
  = 0.1 =
25
  Initial release.
26