How to Hide the "Start Booking" Admin Menu

function plt_hide_calendar_booking_menus() {
	//Hide the "Start Booking" menu.
	remove_menu_page('start-booking');
}

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

Where do I put this code?