How to Hide SIS Handball Admin Menus

function plt_hide_sis_handball_menus() {
	//Hide "SIS Handball".
	remove_menu_page('sis-handball-options');
	//Hide "SIS Handball → SIS Handball".
	remove_submenu_page('sis-handball-options', 'sis-handball-options');
	//Hide "SIS Handball → Shortcode generator".
	remove_submenu_page('sis-handball-options', 'sis-handball-shortcode-generator');
	//Hide "SIS Handball → Snapshots".
	remove_submenu_page('sis-handball-options', 'sis-handball-snapshots');
	//Hide "SIS Handball → Concatenations".
	remove_submenu_page('sis-handball-options', 'sis-handball-concatenations');
}

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

Where do I put this code?