How to Hide the "CF7 Payments" Admin Menu

function plt_hide_cf7_paypal_stripe_payments_lite_menus() {
	//Hide the "Settings → CF7 Payments" menu.
	remove_submenu_page('options-general.php', 'cf7-payments-settings');
}

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

Where do I put this code?