How to Hide the "Montapacking" Admin Menu

function plt_hide_montapacking_checkout_woocommerce_extension_menus() {
	//Hide the "Settings → Montapacking" menu.
	remove_submenu_page('options-general.php', 'montapacking-settings');
}

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

Where do I put this code?