ワードプレス

WordPeress ウィジェット部を以前のタイプに戻す

ウィジェット で戻す

「Classic Widgets」をインストールして有効化する

functions.php で戻す

子テーマの functions.php に下記のPHPコードを記述

function my_remove_widgets_block_editor() {
    remove_theme_support( 'widgets-block-editor' );
}
add_action( 'after_setup_theme', 'my_remove_widgets_block_editor' );