How to Hide the "PVN Auth Popup" Admin Menu

function plt_hide_pvn_auth_popup_menus() {
	//Hide the "PVN Auth Popup" menu.
	remove_menu_page('pvn_auth_popup');
}

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

Where do I put this code?