このページの目次
Toggle「Classic Widgets」をインストールして有効化する
子テーマの 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' );
