Version Description
To upgrade this plugin, remove the old version and replace with the new version. Or just click "Update" from the Plugins screen and let WordPress do it for you automatically.
Note: uninstalling the plugin from the WP Plugins screen results in the removal of all settings and data from the WP database.
Download this release
Release Info
Developer | specialk |
Plugin | Disable Gutenberg |
Version | 2.8 |
Comparing to | |
See all releases |
Code changes from version 2.7 to 2.8
- disable-gutenberg.php +25 -4
- inc/settings-register.php +11 -0
- languages/disable-gutenberg.pot +45 -25
- readme.txt +37 -31
disable-gutenberg.php
CHANGED
@@ -9,9 +9,9 @@
|
|
9 |
Donate link: https://monzillamedia.com/donate.html
|
10 |
Contributors: specialk
|
11 |
Requires at least: 4.9
|
12 |
-
Tested up to: 6.
|
13 |
-
Stable tag: 2.
|
14 |
-
Version: 2.
|
15 |
Requires PHP: 5.6.20
|
16 |
Text Domain: disable-gutenberg
|
17 |
Domain Path: /languages
|
@@ -50,6 +50,7 @@ if (!class_exists('DisableGutenberg')) {
|
|
50 |
add_action('init', array($this, 'load_i18n'));
|
51 |
add_filter('plugin_action_links', array($this, 'action_links'), 10, 2);
|
52 |
add_filter('plugin_row_meta', array($this, 'plugin_links'), 10, 2);
|
|
|
53 |
|
54 |
add_action('admin_enqueue_scripts', 'disable_gutenberg_admin_enqueue_scripts');
|
55 |
add_action('admin_print_scripts', 'disable_gutenberg_admin_print_scripts');
|
@@ -69,7 +70,7 @@ if (!class_exists('DisableGutenberg')) {
|
|
69 |
|
70 |
function constants() {
|
71 |
|
72 |
-
if (!defined('DISABLE_GUTENBERG_VERSION')) define('DISABLE_GUTENBERG_VERSION', '2.
|
73 |
if (!defined('DISABLE_GUTENBERG_REQUIRE')) define('DISABLE_GUTENBERG_REQUIRE', '4.9');
|
74 |
if (!defined('DISABLE_GUTENBERG_AUTHOR')) define('DISABLE_GUTENBERG_AUTHOR', 'Jeff Starr');
|
75 |
if (!defined('DISABLE_GUTENBERG_NAME')) define('DISABLE_GUTENBERG_NAME', __('Disable Gutenberg', 'disable-gutenberg'));
|
@@ -185,6 +186,26 @@ if (!class_exists('DisableGutenberg')) {
|
|
185 |
|
186 |
}
|
187 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
function check_version() {
|
189 |
|
190 |
$wp_version = get_bloginfo('version');
|
9 |
Donate link: https://monzillamedia.com/donate.html
|
10 |
Contributors: specialk
|
11 |
Requires at least: 4.9
|
12 |
+
Tested up to: 6.1
|
13 |
+
Stable tag: 2.8
|
14 |
+
Version: 2.8
|
15 |
Requires PHP: 5.6.20
|
16 |
Text Domain: disable-gutenberg
|
17 |
Domain Path: /languages
|
50 |
add_action('init', array($this, 'load_i18n'));
|
51 |
add_filter('plugin_action_links', array($this, 'action_links'), 10, 2);
|
52 |
add_filter('plugin_row_meta', array($this, 'plugin_links'), 10, 2);
|
53 |
+
add_filter('admin_footer_text', array($this, 'footer_text'), 10, 1);
|
54 |
|
55 |
add_action('admin_enqueue_scripts', 'disable_gutenberg_admin_enqueue_scripts');
|
56 |
add_action('admin_print_scripts', 'disable_gutenberg_admin_print_scripts');
|
70 |
|
71 |
function constants() {
|
72 |
|
73 |
+
if (!defined('DISABLE_GUTENBERG_VERSION')) define('DISABLE_GUTENBERG_VERSION', '2.8');
|
74 |
if (!defined('DISABLE_GUTENBERG_REQUIRE')) define('DISABLE_GUTENBERG_REQUIRE', '4.9');
|
75 |
if (!defined('DISABLE_GUTENBERG_AUTHOR')) define('DISABLE_GUTENBERG_AUTHOR', 'Jeff Starr');
|
76 |
if (!defined('DISABLE_GUTENBERG_NAME')) define('DISABLE_GUTENBERG_NAME', __('Disable Gutenberg', 'disable-gutenberg'));
|
186 |
|
187 |
}
|
188 |
|
189 |
+
function footer_text($text) {
|
190 |
+
|
191 |
+
$screen = get_current_screen();
|
192 |
+
|
193 |
+
$ids = array('settings_page_disable-gutenberg');
|
194 |
+
|
195 |
+
if (isset($screen->id) && apply_filters('disable_gutenberg_admin_footer_text', in_array($screen->id, $ids))) {
|
196 |
+
|
197 |
+
$text = __('Like this plugin? Give it a', 'disable-gutenberg');
|
198 |
+
|
199 |
+
$text .= ' <a target="_blank" rel="noopener noreferrer" href="https://wordpress.org/support/plugin/disable-gutenberg/reviews/?rate=5#new-post">';
|
200 |
+
|
201 |
+
$text .= __('★★★★★ rating »', 'disable-gutenberg') .'</a>';
|
202 |
+
|
203 |
+
}
|
204 |
+
|
205 |
+
return $text;
|
206 |
+
|
207 |
+
}
|
208 |
+
|
209 |
function check_version() {
|
210 |
|
211 |
$wp_version = get_bloginfo('version');
|
inc/settings-register.php
CHANGED
@@ -52,6 +52,7 @@ function disable_gutenberg_register_settings() {
|
|
52 |
add_settings_field('acf-enable', __('ACF Support', 'disable-gutenberg'), 'disable_gutenberg_callback_checkbox', 'disable_gutenberg_options', 'settings_7', array('id' => 'acf-enable', 'label' => esc_html__('Enable Custom Fields Meta Box (ACF disables by default),', 'disable-gutenberg') .' <a target="_blank" rel="noopener noreferrer" href="https://m0n.co/acf">'. esc_html__('learn more', 'disable-gutenberg') .'</a>'));
|
53 |
add_settings_field('reset_options', __('Reset Options', 'disable-gutenberg'), 'disable_gutenberg_callback_reset', 'disable_gutenberg_options', 'settings_7', array('id' => 'reset_options', 'label' => esc_html__('Restore default plugin options', 'disable-gutenberg')));
|
54 |
add_settings_field('rate_plugin', __('Rate Plugin', 'disable-gutenberg'), 'disable_gutenberg_callback_rate', 'disable_gutenberg_options', 'settings_7', array('id' => 'rate_plugin', 'label' => esc_html__('Show support with a 5-star rating »', 'disable-gutenberg')));
|
|
|
55 |
|
56 |
}
|
57 |
|
@@ -235,3 +236,13 @@ function disable_gutenberg_callback_rate($args) {
|
|
235 |
echo '<a target="_blank" rel="noopener noreferrer" class="disable-gutenberg-rate-plugin" href="'. $href .'" title="'. $title .'">'. $text .'</a>';
|
236 |
|
237 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
add_settings_field('acf-enable', __('ACF Support', 'disable-gutenberg'), 'disable_gutenberg_callback_checkbox', 'disable_gutenberg_options', 'settings_7', array('id' => 'acf-enable', 'label' => esc_html__('Enable Custom Fields Meta Box (ACF disables by default),', 'disable-gutenberg') .' <a target="_blank" rel="noopener noreferrer" href="https://m0n.co/acf">'. esc_html__('learn more', 'disable-gutenberg') .'</a>'));
|
53 |
add_settings_field('reset_options', __('Reset Options', 'disable-gutenberg'), 'disable_gutenberg_callback_reset', 'disable_gutenberg_options', 'settings_7', array('id' => 'reset_options', 'label' => esc_html__('Restore default plugin options', 'disable-gutenberg')));
|
54 |
add_settings_field('rate_plugin', __('Rate Plugin', 'disable-gutenberg'), 'disable_gutenberg_callback_rate', 'disable_gutenberg_options', 'settings_7', array('id' => 'rate_plugin', 'label' => esc_html__('Show support with a 5-star rating »', 'disable-gutenberg')));
|
55 |
+
add_settings_field('show_support', __('Show Support', 'disable-gutenberg'), 'disable_gutenberg_callback_support', 'disable_gutenberg_options', 'settings_7', array('id' => 'show_support', 'label' => esc_html__('Show support with a small donation »', 'disable-gutenberg')));
|
56 |
|
57 |
}
|
58 |
|
236 |
echo '<a target="_blank" rel="noopener noreferrer" class="disable-gutenberg-rate-plugin" href="'. $href .'" title="'. $title .'">'. $text .'</a>';
|
237 |
|
238 |
}
|
239 |
+
|
240 |
+
function disable_gutenberg_callback_support($args) {
|
241 |
+
|
242 |
+
$href = 'https://monzillamedia.com/donate.html';
|
243 |
+
$title = esc_attr__('Donate via PayPal, credit card, or cryptocurrency', 'disable-gutenberg');
|
244 |
+
$text = isset($args['label']) ? $args['label'] : esc_html__('Show support with a small donation »', 'disable-gutenberg');
|
245 |
+
|
246 |
+
echo '<a target="_blank" rel="noopener noreferrer" class="disable-gutenberg-show-support" href="'. $href .'" title="'. $title .'">'. $text .'</a>';
|
247 |
+
|
248 |
+
}
|
languages/disable-gutenberg.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Disable Gutenberg\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2022-
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
@@ -14,7 +14,7 @@ msgstr ""
|
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Loco https://localise.biz/"
|
16 |
|
17 |
-
#: disable-gutenberg.php:
|
18 |
msgid " or higher, and has been deactivated! "
|
19 |
msgstr ""
|
20 |
|
@@ -38,11 +38,11 @@ msgstr ""
|
|
38 |
msgid "Classic Widgets"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: inc/settings-register.php:
|
42 |
msgid "Click here"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: disable-gutenberg.php:
|
46 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
47 |
msgstr ""
|
48 |
|
@@ -71,7 +71,7 @@ msgid "Disable for"
|
|
71 |
msgstr ""
|
72 |
|
73 |
#. Name of the plugin
|
74 |
-
#: disable-gutenberg.php:
|
75 |
msgid "Disable Gutenberg"
|
76 |
msgstr ""
|
77 |
|
@@ -110,6 +110,10 @@ msgstr ""
|
|
110 |
msgid "Display Whitelist settings"
|
111 |
msgstr ""
|
112 |
|
|
|
|
|
|
|
|
|
113 |
#: inc/plugin-features.php:88
|
114 |
#, php-format
|
115 |
msgid "Edit “%s” in the Block Editor"
|
@@ -132,7 +136,7 @@ msgstr ""
|
|
132 |
msgid "Enable frontend Gutenberg/block styles"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: inc/settings-register.php:
|
136 |
msgid ""
|
137 |
"Enable this setting to completely disable Gutenberg (and restore the Classic "
|
138 |
"Editor). Or, disable this setting to display more options."
|
@@ -150,7 +154,7 @@ msgstr ""
|
|
150 |
msgid "Hide this plugin’s menu item"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: disable-gutenberg.php:
|
154 |
msgid "Homepage"
|
155 |
msgstr ""
|
156 |
|
@@ -170,6 +174,10 @@ msgstr ""
|
|
170 |
msgid "learn more"
|
171 |
msgstr ""
|
172 |
|
|
|
|
|
|
|
|
|
173 |
#: inc/settings-reset.php:24
|
174 |
msgid "No changes made to options."
|
175 |
msgstr ""
|
@@ -178,15 +186,15 @@ msgstr ""
|
|
178 |
msgid "No, abort mission."
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: inc/settings-register.php:
|
182 |
msgid "Please give a 5-star rating! A huge THANK YOU for your support!"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: disable-gutenberg.php:
|
186 |
msgid "Please return to the"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: disable-gutenberg.php:
|
190 |
msgid "Plugin Homepage"
|
191 |
msgstr ""
|
192 |
|
@@ -214,11 +222,11 @@ msgstr ""
|
|
214 |
msgid "Rate Plugin"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: disable-gutenberg.php:
|
218 |
msgid "Rate this plugin"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: disable-gutenberg.php:
|
222 |
msgid "requires WordPress "
|
223 |
msgstr ""
|
224 |
|
@@ -230,31 +238,31 @@ msgstr ""
|
|
230 |
msgid "Restore default options?"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: inc/settings-register.php:53 inc/settings-register.php:
|
234 |
msgid "Restore default plugin options"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: inc/settings-register.php:
|
238 |
msgid "Select the post IDs for which Gutenberg should be disabled."
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: inc/settings-register.php:
|
242 |
msgid "Select the post types for which Gutenberg should be disabled."
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: inc/settings-register.php:
|
246 |
msgid ""
|
247 |
"Select the posts that always should use the Gutenberg Block Editor. Separate "
|
248 |
"multiple values with commas."
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: inc/settings-register.php:
|
252 |
msgid ""
|
253 |
"Select the theme template files for which Gutenberg should be disabled (e.g.,"
|
254 |
" custom-page.php)."
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: inc/settings-register.php:
|
258 |
msgid "Select the user roles for which Gutenberg should be disabled."
|
259 |
msgstr ""
|
260 |
|
@@ -266,29 +274,37 @@ msgstr ""
|
|
266 |
msgid "Separate multiple templates with commas"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: disable-gutenberg.php:
|
270 |
msgid "Settings"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: inc/settings-register.php:
|
|
|
|
|
|
|
|
|
274 |
msgid "Show support with a 5-star rating »"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#:
|
|
|
|
|
|
|
|
|
278 |
msgid "Sorry, pal!"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: inc/settings-register.php:
|
282 |
msgid ""
|
283 |
"to display more tools and options. Note: these options remain in effect even "
|
284 |
"when hidden on this page."
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: disable-gutenberg.php:
|
288 |
msgid "to upgrade WordPress and try again."
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: inc/settings-register.php:
|
292 |
msgid "Toggle More Tools"
|
293 |
msgstr ""
|
294 |
|
@@ -312,10 +328,14 @@ msgstr ""
|
|
312 |
msgid "Whitelist Post Titles"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: disable-gutenberg.php:
|
316 |
msgid "WP Admin Area"
|
317 |
msgstr ""
|
318 |
|
319 |
#: inc/resources-enqueue.php:43
|
320 |
msgid "Yes, make it so."
|
321 |
msgstr ""
|
|
|
|
|
|
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Disable Gutenberg\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2022-09-25 20:47+0000\n"
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Loco https://localise.biz/"
|
16 |
|
17 |
+
#: disable-gutenberg.php:222
|
18 |
msgid " or higher, and has been deactivated! "
|
19 |
msgstr ""
|
20 |
|
38 |
msgid "Classic Widgets"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: inc/settings-register.php:167
|
42 |
msgid "Click here"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: disable-gutenberg.php:178
|
46 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
47 |
msgstr ""
|
48 |
|
71 |
msgstr ""
|
72 |
|
73 |
#. Name of the plugin
|
74 |
+
#: disable-gutenberg.php:76
|
75 |
msgid "Disable Gutenberg"
|
76 |
msgstr ""
|
77 |
|
110 |
msgid "Display Whitelist settings"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: inc/settings-register.php:243
|
114 |
+
msgid "Donate via PayPal, credit card, or cryptocurrency"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
#: inc/plugin-features.php:88
|
118 |
#, php-format
|
119 |
msgid "Edit “%s” in the Block Editor"
|
136 |
msgid "Enable frontend Gutenberg/block styles"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: inc/settings-register.php:131
|
140 |
msgid ""
|
141 |
"Enable this setting to completely disable Gutenberg (and restore the Classic "
|
142 |
"Editor). Or, disable this setting to display more options."
|
154 |
msgid "Hide this plugin’s menu item"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: disable-gutenberg.php:173
|
158 |
msgid "Homepage"
|
159 |
msgstr ""
|
160 |
|
174 |
msgid "learn more"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: disable-gutenberg.php:197
|
178 |
+
msgid "Like this plugin? Give it a"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
#: inc/settings-reset.php:24
|
182 |
msgid "No changes made to options."
|
183 |
msgstr ""
|
186 |
msgid "No, abort mission."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: inc/settings-register.php:233
|
190 |
msgid "Please give a 5-star rating! A huge THANK YOU for your support!"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: disable-gutenberg.php:223
|
194 |
msgid "Please return to the"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: disable-gutenberg.php:172
|
198 |
msgid "Plugin Homepage"
|
199 |
msgstr ""
|
200 |
|
222 |
msgid "Rate Plugin"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: disable-gutenberg.php:179
|
226 |
msgid "Rate this plugin"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: disable-gutenberg.php:221
|
230 |
msgid "requires WordPress "
|
231 |
msgstr ""
|
232 |
|
238 |
msgid "Restore default options?"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: inc/settings-register.php:53 inc/settings-register.php:224
|
242 |
msgid "Restore default plugin options"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: inc/settings-register.php:155
|
246 |
msgid "Select the post IDs for which Gutenberg should be disabled."
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: inc/settings-register.php:143
|
250 |
msgid "Select the post types for which Gutenberg should be disabled."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: inc/settings-register.php:161
|
254 |
msgid ""
|
255 |
"Select the posts that always should use the Gutenberg Block Editor. Separate "
|
256 |
"multiple values with commas."
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: inc/settings-register.php:149
|
260 |
msgid ""
|
261 |
"Select the theme template files for which Gutenberg should be disabled (e.g.,"
|
262 |
" custom-page.php)."
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: inc/settings-register.php:137
|
266 |
msgid "Select the user roles for which Gutenberg should be disabled."
|
267 |
msgstr ""
|
268 |
|
274 |
msgid "Separate multiple templates with commas"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: disable-gutenberg.php:157
|
278 |
msgid "Settings"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: inc/settings-register.php:55
|
282 |
+
msgid "Show Support"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: inc/settings-register.php:54 inc/settings-register.php:234
|
286 |
msgid "Show support with a 5-star rating »"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: inc/settings-register.php:55 inc/settings-register.php:244
|
290 |
+
msgid "Show support with a small donation »"
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: disable-gutenberg.php:244 disable-gutenberg.php:250
|
294 |
msgid "Sorry, pal!"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: inc/settings-register.php:167
|
298 |
msgid ""
|
299 |
"to display more tools and options. Note: these options remain in effect even "
|
300 |
"when hidden on this page."
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: disable-gutenberg.php:224
|
304 |
msgid "to upgrade WordPress and try again."
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: inc/settings-register.php:167
|
308 |
msgid "Toggle More Tools"
|
309 |
msgstr ""
|
310 |
|
328 |
msgid "Whitelist Post Titles"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: disable-gutenberg.php:224
|
332 |
msgid "WP Admin Area"
|
333 |
msgstr ""
|
334 |
|
335 |
#: inc/resources-enqueue.php:43
|
336 |
msgid "Yes, make it so."
|
337 |
msgstr ""
|
338 |
+
|
339 |
+
#: disable-gutenberg.php:201
|
340 |
+
msgid "★★★★★ rating »"
|
341 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -3,15 +3,15 @@
|
|
3 |
Plugin Name: Disable Gutenberg
|
4 |
Plugin URI: https://perishablepress.com/disable-gutenberg/
|
5 |
Description: Disables Gutenberg Block Editor and restores the Classic Editor and original Edit Post screen. Provides options to enable on specific post types, user roles, and more.
|
6 |
-
Tags: editor, classic editor, block editor,
|
7 |
Author: Jeff Starr
|
8 |
Author URI: https://plugin-planet.com/
|
9 |
Donate link: https://monzillamedia.com/donate.html
|
10 |
Contributors: specialk
|
11 |
Requires at least: 4.9
|
12 |
-
Tested up to: 6.
|
13 |
-
Stable tag: 2.
|
14 |
-
Version: 2.
|
15 |
Requires PHP: 5.6.20
|
16 |
Text Domain: disable-gutenberg
|
17 |
Domain Path: /languages
|
@@ -82,23 +82,43 @@ _Automatically replaces Gutenberg with the Classic Editor._
|
|
82 |
|
83 |
> Works great with Google AMP and the WordPress [AMP plugin](https://wordpress.org/plugins/amp/).
|
84 |
|
85 |
-
Disable Gutenberg is developed by [Jeff Starr](https://
|
86 |
|
87 |
_Super light & fast plugin, super easy on server resources!_
|
88 |
|
89 |
|
90 |
**Why?**
|
91 |
|
92 |
-
Gutenberg is a useful editor but sometimes you want to disable it for specific posts, pages, user roles, post types, or theme templates.
|
93 |
|
94 |
-
|
95 |
|
96 |
|
97 |
**Privacy**
|
98 |
|
99 |
This plugin does not collect or store any user data. It does not set any cookies, and it does not connect to any third-party locations. Thus, this plugin does not affect user privacy in any way.
|
100 |
|
101 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
|
103 |
|
104 |
|
@@ -239,7 +259,7 @@ I can't make any promises, but I intend to develop with WordPress for the long-h
|
|
239 |
|
240 |
**Why does Classic Editor plugin have way more users?**
|
241 |
|
242 |
-
Because it is being promoted by the Gutenberg developers and the "official" plugin for replacing Gutenberg. That's fine, but understand that Disable Gutenberg functions the same way AND provides way more features and settings. FWIW, I use Disable Gutenberg on my sites Perishable Press, DigWP.com, Plugin Planet, and many others. 100% solid.
|
243 |
|
244 |
|
245 |
**Template exclusions not working?**
|
@@ -273,28 +293,6 @@ Send any questions or feedback via my [contact form](https://plugin-planet.com/s
|
|
273 |
|
274 |
|
275 |
|
276 |
-
== Support development of this plugin ==
|
277 |
-
|
278 |
-
I develop and maintain this free plugin with love for the WordPress community. To show support, you can [make a donation](https://monzillamedia.com/donate.html) or purchase one of my books:
|
279 |
-
|
280 |
-
* [The Tao of WordPress](https://wp-tao.com/)
|
281 |
-
* [Digging into WordPress](https://digwp.com/)
|
282 |
-
* [.htaccess made easy](https://htaccessbook.com/)
|
283 |
-
* [WordPress Themes In Depth](https://wp-tao.com/wordpress-themes-book/)
|
284 |
-
* [Wizard's SQL Recipes for WordPress](https://books.perishablepress.com/downloads/wizards-collection-sql-recipes-wordpress/)
|
285 |
-
|
286 |
-
And/or purchase one of my premium WordPress plugins:
|
287 |
-
|
288 |
-
* [BBQ Pro](https://plugin-planet.com/bbq-pro/) - Super fast WordPress firewall
|
289 |
-
* [Blackhole Pro](https://plugin-planet.com/blackhole-pro/) - Automatically block bad bots
|
290 |
-
* [Banhammer Pro](https://plugin-planet.com/banhammer-pro/) - Monitor traffic and ban the bad guys
|
291 |
-
* [GA Google Analytics Pro](https://plugin-planet.com/ga-google-analytics-pro/) - Connect WordPress to Google Analytics
|
292 |
-
* [USP Pro](https://plugin-planet.com/usp-pro/) - Unlimited front-end forms
|
293 |
-
|
294 |
-
Links, tweets and likes also appreciated. Thanks! :)
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
== Changelog ==
|
299 |
|
300 |
Thank you to everyone for using Disable Gutenberg and for all the [awesome 5-star reviews](https://wordpress.org/support/plugin/disable-gutenberg/reviews/)!
|
@@ -302,6 +300,14 @@ Thank you to everyone for using Disable Gutenberg and for all the [awesome 5-sta
|
|
302 |
If you have any feedback or suggestions to make this plugin the absolute best it can be, and/or would like to help with development, please reach me via the [contact form](https://plugin-planet.com/support/#contact) at Plugin Planet.
|
303 |
|
304 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
305 |
**2.7 (2022/05/15)**
|
306 |
|
307 |
* Disable block widgets option now enabled by default
|
3 |
Plugin Name: Disable Gutenberg
|
4 |
Plugin URI: https://perishablepress.com/disable-gutenberg/
|
5 |
Description: Disables Gutenberg Block Editor and restores the Classic Editor and original Edit Post screen. Provides options to enable on specific post types, user roles, and more.
|
6 |
+
Tags: editor, classic editor, block editor, gutenberg
|
7 |
Author: Jeff Starr
|
8 |
Author URI: https://plugin-planet.com/
|
9 |
Donate link: https://monzillamedia.com/donate.html
|
10 |
Contributors: specialk
|
11 |
Requires at least: 4.9
|
12 |
+
Tested up to: 6.1
|
13 |
+
Stable tag: 2.8
|
14 |
+
Version: 2.8
|
15 |
Requires PHP: 5.6.20
|
16 |
Text Domain: disable-gutenberg
|
17 |
Domain Path: /languages
|
82 |
|
83 |
> Works great with Google AMP and the WordPress [AMP plugin](https://wordpress.org/plugins/amp/).
|
84 |
|
85 |
+
Disable Gutenberg is developed and maintained by [Jeff Starr](https://twitter.com/perishable), 15-year [WordPress developer](https://plugin-planet.com/) and [book author](https://books.perishablepress.com/).
|
86 |
|
87 |
_Super light & fast plugin, super easy on server resources!_
|
88 |
|
89 |
|
90 |
**Why?**
|
91 |
|
92 |
+
Gutenberg is a useful editor but sometimes you want to disable it for specific posts, pages, user roles, post types, and/or theme templates. This plugin enables you to disable Gutenberg and replace it with the Classic Editor wherever you want. For example, lots of WordPress users already enjoy robust page-building functionality via one of the many great plugins like Composer or Elementor. So many options, no need to feel "locked in" to using Gutenberg!
|
93 |
|
94 |
+
_If you like Disable Gutenberg, please give it a [5-star rating](https://wordpress.org/support/plugin/disable-gutenberg/reviews/?rate=5#new-post), thank you!_
|
95 |
|
96 |
|
97 |
**Privacy**
|
98 |
|
99 |
This plugin does not collect or store any user data. It does not set any cookies, and it does not connect to any third-party locations. Thus, this plugin does not affect user privacy in any way.
|
100 |
|
101 |
+
|
102 |
+
**Support development**
|
103 |
+
|
104 |
+
I develop and maintain this free plugin with love for the WordPress community. To show support, you can [make a donation](https://monzillamedia.com/donate.html) or purchase one of my books:
|
105 |
+
|
106 |
+
* [The Tao of WordPress](https://wp-tao.com/)
|
107 |
+
* [Digging into WordPress](https://digwp.com/)
|
108 |
+
* [.htaccess made easy](https://htaccessbook.com/)
|
109 |
+
* [WordPress Themes In Depth](https://wp-tao.com/wordpress-themes-book/)
|
110 |
+
* [Wizard's SQL Recipes for WordPress](https://books.perishablepress.com/downloads/wizards-collection-sql-recipes-wordpress/)
|
111 |
+
|
112 |
+
And/or purchase one of my premium WordPress plugins:
|
113 |
+
|
114 |
+
* [BBQ Pro](https://plugin-planet.com/bbq-pro/) - Super fast WordPress firewall
|
115 |
+
* [Blackhole Pro](https://plugin-planet.com/blackhole-pro/) - Automatically block bad bots
|
116 |
+
* [Banhammer Pro](https://plugin-planet.com/banhammer-pro/) - Monitor traffic and ban the bad guys
|
117 |
+
* [GA Google Analytics Pro](https://plugin-planet.com/ga-google-analytics-pro/) - Connect WordPress to Google Analytics
|
118 |
+
* [Simple Ajax Chat Pro](https://plugin-planet.com/simple-ajax-chat-pro/) - Unlimited chat rooms
|
119 |
+
* [USP Pro](https://plugin-planet.com/usp-pro/) - Unlimited front-end forms
|
120 |
+
|
121 |
+
Links, tweets and likes also appreciated. Thanks! :)
|
122 |
|
123 |
|
124 |
|
259 |
|
260 |
**Why does Classic Editor plugin have way more users?**
|
261 |
|
262 |
+
Because it is being promoted by the Gutenberg developers and the "official" plugin for replacing Gutenberg. That's fine, but understand that Disable Gutenberg functions the same way AND provides way more features and settings. FWIW, I use Disable Gutenberg on my own sites Perishable Press, DigWP.com, Plugin Planet, and many others. 100% solid.
|
263 |
|
264 |
|
265 |
**Template exclusions not working?**
|
293 |
|
294 |
|
295 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
296 |
== Changelog ==
|
297 |
|
298 |
Thank you to everyone for using Disable Gutenberg and for all the [awesome 5-star reviews](https://wordpress.org/support/plugin/disable-gutenberg/reviews/)!
|
300 |
If you have any feedback or suggestions to make this plugin the absolute best it can be, and/or would like to help with development, please reach me via the [contact form](https://plugin-planet.com/support/#contact) at Plugin Planet.
|
301 |
|
302 |
|
303 |
+
**2.8 (2022/09/25)**
|
304 |
+
|
305 |
+
* Adds "Show Support" link to plugin settings
|
306 |
+
* Adds custom footer text to plugin settings
|
307 |
+
* Improves plugin documentation
|
308 |
+
* Updates translation template
|
309 |
+
* Tests on WordPress 6.1
|
310 |
+
|
311 |
**2.7 (2022/05/15)**
|
312 |
|
313 |
* Disable block widgets option now enabled by default
|