• Two of the main reasons my agency started using WordPress several years ago have been removed with the inclusion of Gutenberg. The simplicity and flexibility that WordPress had are gone. Gutenberg now allows our clients to screw up their websites in ever more creative ways. Go back to the classic editor as the default! Will definitely be looking at an alternative CMS if WP keeps on this track.

    • This topic was modified 6 years, 1 month ago by energise.
Viewing 1 replies (of 1 total)
  • I think the new editor is more simple and more flexible. You can disable Gutenberg for your clients very easily:

    // disable for posts
    add_filter('use_block_editor_for_post', '__return_false', 10);
    
    // disable for post types
    add_filter('use_block_editor_for_post_type', '__return_false', 10);
    

    You can also install Classic Editor. This is a better editor, and will evolve even more.

    • This reply was modified 6 years, 1 month ago by Elías.
Viewing 1 replies (of 1 total)
  • The topic ‘Gutenberg has destroyed WordPress’ is closed to new replies.