How to Hide the "IVGuard" Admin Menu

function plt_hide_ivguard_menus() {
	//Hide the "IVGuard" menu.
	remove_menu_page('ivguard');
}

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

Where do I put this code?