How to Hide the "Contact Form 7 Captcha" Admin Menu

function plt_hide_contact_form_7_simple_recaptcha_menus() {
	//Hide the "Settings → Contact Form 7 Captcha" menu.
	remove_submenu_page('options-general.php', 'cf7sr-edit');
}

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

Where do I put this code?