How to Hide Category Order and Taxonomy Terms Order Admin Menus

function plt_hide_taxonomy_terms_order_menus() {
	//Hide the "Posts → Taxonomy Order" menu.
	remove_submenu_page('edit.php', 'to-interface-post');
	//Hide the "Settings → Taxonomy Terms Order" menu.
	remove_submenu_page('options-general.php', 'to-options');
}

add_action('admin_menu', 'plt_hide_taxonomy_terms_order_menus', 100);

Where do I put this code?