Home / Disable / Disable Gutenberg Editor (use Classic Editor)
Duplicate Snippet

Embed Snippet on Your Site

Disable Gutenberg Editor (use Classic Editor)

Switch back to the Classic Editor by disablling the Block Editor.

<10
Code Preview
php
<?php
add_filter('gutenberg_can_edit_post', '__return_false', 5);
add_filter('use_block_editor_for_post', '__return_false', 5);

Comments

Add a Comment