How to Hide the "PerfOps One" Admin Menu

function plt_hide_mailarchiver_menus() {
	//Hide the "PerfOps One" menu.
	remove_menu_page('perfopsone-dashboard');
}

add_action('admin_menu', 'plt_hide_mailarchiver_menus', 111);

Where do I put this code?