How to Hide The Events Calendar Extension: Registration Admin Menus

function plt_hide_the_events_calendar_extension_registration_menus() {
	//Hide the "Event Registration" menu.
	remove_menu_page('wpecr_options');
	//Hide the "Event Registration → Registrations" menu.
	remove_submenu_page('wpecr_options', 'wpecr_options');
	//Hide the "Event Registration → Settings" menu.
	remove_submenu_page('wpecr_options', 'wpecr_options_page');
}

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

Where do I put this code?