How to Hide the "Stackable" Admin Menu

function plt_hide_stackable_ultimate_gutenberg_blocks_menus() {
	//Hide the "Settings → Stackable" menu.
	remove_submenu_page('options-general.php', 'stackable');
}

add_action('admin_menu', 'plt_hide_stackable_ultimate_gutenberg_blocks_menus', 1000000000);

Where do I put this code?