function.phpに以下を記述
add_filter( 'use_block_editor_for_post', function( $use_block_editor, $post ) {
	if ( 'exsample' === $post->post_type ) {
		$use_block_editor = false;
	}
	return $use_block_editor;
}, 10, 2 );

latest post

0