Disable WordPress Gutenberg Editor (use Classic Editor)

Posted

Code Preview

Comments


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

<?php
add_filter('gutenberg_can_edit_post', '__return_false', 5);
add_filter('use_block_editor_for_post', '__return_false', 5);
?>

Views: 9

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *