How to Hide the "Unit Converter" Admin Menu

function plt_hide_hash_converter_menus() {
	//Hide the "Unit Converter" menu.
	remove_menu_page('uuc-settings');
}

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

Where do I put this code?