Disble new editor wordpress

Disabling the new editor in WordPress can be done in a few ways. Here are the steps:

Method 1: Using the WordPress Settings

  1. Log in to your WordPress dashboard.
  2. Click on the "Users" tab in the left-hand menu.
  3. Click on "Profile" under the "Your Profile" section.
  4. Scroll down to the "Writing" section.
  5. Uncheck the box next to "Use the block editor for all content" (or "Use the new block editor" in older versions).
  6. Click "Update Profile" to save your changes.

Method 2: Using a Plugin

  1. Install and activate the "Classic Editor" plugin from the WordPress plugin directory.
  2. Once activated, go to the "Settings" tab in the left-hand menu.
  3. Click on "Writing" under the "Settings" section.
  4. Scroll down to the "Editor" section.
  5. Select "WordPress Classic Editor" from the dropdown menu.
  6. Click "Save Changes" to save your changes.

Method 3: Using a Theme

  1. Some themes, such as the Twenty Nineteen theme, have a built-in option to disable the new editor.
  2. To do this, go to the "Customize" tab in the left-hand menu.
  3. Click on "Writing" under the "Customize" section.
  4. Scroll down to the "Editor" section.
  5. Select "WordPress Classic Editor" from the dropdown menu.
  6. Click "Save & Publish" to save your changes.

Method 4: Using a Code Snippet

  1. Add the following code to your theme's functions.php file:
    add_filter( 'use_block_editor_for_post_type', '__return_false' );
  2. Save the changes to your functions.php file.

Note: Disabling the new editor will not remove it entirely, but it will prevent it from being used by default. You can still access the new editor by clicking on the "Switch to the block editor" button in the top-right corner of the editor screen.