How to Hide the "Add to Calendar : CalGet" Admin Menu

function plt_hide_calget_menus() {
	//Hide the "Settings → Add to Calendar : CalGet" menu.
	remove_submenu_page('options-general.php', 'calget-settings');
}

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

Where do I put this code?