How to Hide the "reCAPTCHA" Admin Menu

function plt_hide_wp_google_recaptcha_menus() {
	//Hide the "Settings → reCAPTCHA" menu.
	remove_submenu_page('options-general.php', 'google_recaptcha-options');
}

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

Where do I put this code?