How to Hide the "Parcelmind" Admin Menu

function plt_hide_parcelmind_shipping_suite_menus() {
	//Hide the "Parcelmind" menu.
	remove_menu_page('parcelmind-settings');
}

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

Where do I put this code?