How to Hide the "Simple banner" Admin Menu

function plt_hide_fsd_simple_banner_menus() {
	//Hide the "Simple banner" menu.
	remove_menu_page('crb_carbon_fields_container_fsd-sb.php');
}

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

Where do I put this code?