How to Hide the "MuCash" Admin Menu

function plt_hide_mucash_micro_payments_menus() {
	//Hide the "Settings → MuCash" menu.
	remove_submenu_page('options-general.php', 'mucash_options');
}

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

Where do I put this code?