Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

disable gutenberg editor 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);
 
PREVIOUS NEXT
Tagged: #disable #gutenberg #editor #wordpress
ADD COMMENT
Topic
Name
5+4 =