How to Hide the "EKC Tournaments" Admin Menu

function plt_hide_ekc_tournament_manager_menus() {
	//Hide the "EKC Tournaments" menu.
	remove_menu_page('ekc-tournaments');
}

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

Where do I put this code?