patronage / bubs-timber

Gulp + Timber + WP
Other
5 stars 1 forks source link

Disable gutenberg w/o plugin #170

Closed chrisherold closed 11 months ago

chrisherold commented 1 year ago

We can remove both the Gutenberg Ramp and Classic Editor plugins and replace with this line in functions.php

// Disable Gutenberg Block Editor
add_filter('use_block_editor_for_post', '__return_false');
yuvilio commented 11 months ago

This is now in per #171. Gutenberg is now disabled within the code. If you ever need to enable Gutenberg, simply comment out the include_once 'setup/helpers/gutenberg-disable.php'; in the theme's functions.php file .

We also upgraded wordpress + plugins in this change..