How to Hide the "Intuitive CPO" Admin Menu

function plt_hide_intuitive_custom_post_order_menus() {
	//Hide the "Settings → Intuitive CPO" menu.
	remove_submenu_page('options-general.php', 'hicpo-settings');
}

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

Where do I put this code?