FSEを切り替える方法

August 02, 2023

Table of Contents

function toggle_block_editor() {
  if (true) {
    remove_theme_support( 'block-templates' );
  }
}
add_action('after_setup_theme', 'toggle_block_editor');