How to Hide the "Redforts Hotel" Admin Menu

function plt_hide_oscar_hotel_booking_engine_menus() {
	//Hide the "Redforts Hotel" menu.
	remove_menu_page('ohbe');
}

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

Where do I put this code?