How to Hide the "Real Editor Space" Admin Menu

function plt_hide_real_space_and_enter_menus() {
	//Hide the "Settings → Real Editor Space" menu.
	remove_submenu_page('options-general.php', 'real-editor-space');
}

add_action('admin_menu', 'plt_hide_real_space_and_enter_menus', 11);

Where do I put this code?