by janw.oostendorp.
Allow disabling full site editing in the admin, useful to protect a production site.
Allow disabling full site editing in the admin, useful to protect a production site.
A block theme will continue to work as intended on the frontend while making sure the theme can’t be messed up.
⚠️ Full site editing is still fresh.
For the coming months I’ll keep testing the plugin with new (beta) releases of gutenberg and WordPres.
Just install the plugin and activate.
There is an admin settings page or set the DISABLE_FSE
constant.
DISABLE_FSE
set to true/false.wp-config.php
file.WP_ENVIRONMENT_TYPE
. Docs, A bit more detailsIn your wp-config.php
paste the following to always disable FSE:
define( 'DISABLE_FSE', true );
or to always enable FSE
define( 'DISABLE_FSE', false );