Skip to content

Instantly share code, notes, and snippets.

@arfinmilondev
Created December 21, 2023 10:34
Show Gist options
  • Select an option

  • Save arfinmilondev/ec55a3e16fbbbf53bad6d7dfe03d988e to your computer and use it in GitHub Desktop.

Select an option

Save arfinmilondev/ec55a3e16fbbbf53bad6d7dfe03d988e to your computer and use it in GitHub Desktop.
Remove support for block widget editor in wordpress theme
<?php
/*
* Remove support for block editor.
*/
function milon_theme_support()
{
remove_theme_support('widgets-block-editor');
}
add_action('after_setup_theme', 'milon_theme_support');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment