Désactiver l'éditeur de Gutenberg WordPress Functions.php

// add to functions.php

// 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);
Fragile Flamingo