How to Hide the "Category Order" Admin Menu

function plt_hide_order_categories_menus() {
	//Hide the "Posts → Category Order" menu.
	remove_submenu_page('edit.php', 'wpguy_category_order_options');
}

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

Where do I put this code?