How to Hide the "Pre* Party" Admin Menu

function plt_hide_pre_party_browser_hints_menus() {
	//Hide the "Pre* Party" menu.
	remove_menu_page('pprh-plugin-settings');
}

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

Where do I put this code?