How to Hide the "Boxy Wc Redirect" Admin Menu

function plt_hide_boxy_woocommerce_custom_redirect_after_checkout_menus() {
	//Hide the "Settings → Boxy Wc Redirect" menu.
	remove_submenu_page('options-general.php', 'boxy-wc-redirect');
}

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

Where do I put this code?