How to Hide the "Translation Stats" Admin Menu

function plt_hide_translation_stats_menus() {
	//Hide the "Settings → Translation Stats" menu.
	remove_submenu_page('options-general.php', 'translation-stats');
}

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

Where do I put this code?