Testing Suspended

Testing of this plugin has been temporarily suspended due to an error. It will automatically resume when a new plugin version is released.

How to Hide E-cab Taxi Booking Manager for Woocommerce Admin Menus

function plt_hide_ecab_taxi_booking_manager_menus() {
	//Hide the "Transportation" menu.
	remove_menu_page('mptbm_rent');
	//Hide the "Transportation → Transportation" menu.
	remove_submenu_page('mptbm_rent', 'mptbm_rent');
	//Hide the "Transportation → Quick Setup" menu.
	remove_submenu_page('mptbm_rent', 'mptbm_quick_setup');
}

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

Where do I put this code?