Skip to content

Instantly share code, notes, and snippets.

@AndreFCAmorim
Created November 6, 2022 15:35
Show Gist options
  • Save AndreFCAmorim/a29ed3c36230b0274da40fad75b211a4 to your computer and use it in GitHub Desktop.
Save AndreFCAmorim/a29ed3c36230b0274da40fad75b211a4 to your computer and use it in GitHub Desktop.
Disable Gutenberg Editor (use Classic Editor) on WordPress
<?php
add_filter('gutenberg_can_edit_post', '__return_false', 5);
add_filter('use_block_editor_for_post', '__return_false', 5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment