How to Hide the "Africbase Player" Admin Menu

function plt_hide_africbase_player_menus() {
	//Hide the "Africbase Player" menu.
	remove_menu_page('africbase-player/africbase-player.php');
}

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

Where do I put this code?