Multipage and Gutenberg editor
-
Spent quite a while figuring this out: the plugin worked for some posts and did not for others, finally boiled it down to-
MULTIPAGE DOES NOT PLAY NICELY WITH GUTENBERGquick fix: disable Gutenberg for your theme by adding the below to your functions.php file:
// disable Gutenberg for posts add_filter('use_block_editor_for_post', '__return_false', 10); // disable Gutenberg for post types add_filter('use_block_editor_for_post_type', '__return_false', 10);
Hope that will help others!
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Multipage and Gutenberg editor’ is closed to new replies.