How to Hide the "Nextend Google Connect" Admin Menu

function plt_hide_nextend_google_connect_menus() {
	//Hide the "Settings → Nextend Google Connect" menu.
	remove_submenu_page('options-general.php', 'nextend-google-connect');
}

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

Where do I put this code?