How to Hide the "VY VidHash" Admin Menu

function plt_hide_vidyen_vidhash_menus() {
	//Hide the "VY VidHash" menu.
	remove_menu_page('vy_vidhash');
}

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

Where do I put this code?