How to Hide Simple Google Calendar Outlook Events Widget Admin Menus

function plt_hide_simple_google_icalendar_widget_menus() {
	//Hide the "Settings → Simple iCal Options" menu.
	remove_submenu_page('options-general.php', 'simple_ical_options');
	//Hide the "Settings → Simple iCal Help" menu.
	remove_submenu_page('options-general.php', 'simple_ical_info');
}

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

Where do I put this code?