How to Hide the "Pending Order Bot" Admin Menu

function plt_hide_pending_order_bot_menus() {
	//Hide the "Pending Order Bot" menu.
	remove_menu_page('pending-order-bot');
}

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

Where do I put this code?