How to Hide the "CozyCal" Admin Menu

function plt_hide_online_booking_menus() {
	//Hide the "Settings → CozyCal" menu.
	remove_submenu_page('options-general.php', 'online-booking');
}

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

Where do I put this code?