How to Hide the "Hand Talk" Admin Menu

function plt_hide_handtalk_menus() {
	//Hide the "Settings → Hand Talk" menu.
	remove_submenu_page('options-general.php', 'wpht');
}

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

Where do I put this code?