How to Hide the "AIBuy Player" Admin Menu

function plt_hide_aibuy_player_menus() {
	//Hide the "Settings → AIBuy Player" menu.
	remove_submenu_page('options-general.php', 'aibuy_player');
}

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

Where do I put this code?