How to Hide the "1-Click Login" Admin Menu

function plt_hide_swoop_password_free_authentication_menus() {
	//Hide the "1-Click Login" menu.
	remove_menu_page('swoop');
}

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

Where do I put this code?