WordPress Clasic widget editor

Upgrade your WordPress editing experience with this simple yet powerful code snippet. By implementing this snippet, you’re disabling the block editor for widgets, returning to the classic and familiar widget editing interface. This not only ensures a smoother and more intuitive widget management process but also retains the simplicity you love. Just add this snippet to your theme’s functions.php file, and enjoy the ease of use in crafting and customizing widgets on your WordPress site.

    
//clasic widget editor //https://wpsnippet.club/snippet/wordpress-clasic-widget-editor/ function clasic_widget_editor() { remove_theme_support( 'widgets-block-editor' ); } add_action( 'after_setup_theme', 'clasic_widget_editor' );

Leave a Reply

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