How to Hide the "Oneaccount" Admin Menu

function plt_hide_oneaccount_wp_menus() {
	//Hide the "Oneaccount" menu.
	remove_menu_page('oneaccount-plugin');
}

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

Where do I put this code?