How to Hide the "Tozny" Admin Menu

function plt_hide_toznyauth_menus() {
	//Hide the "Tozny" menu.
	remove_menu_page('toznyauth/toznyauth.php');
}

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

Where do I put this code?