Skip to content

Instantly share code, notes, and snippets.

@zorem
Last active October 9, 2020 09:20
Show Gist options
  • Save zorem/d4eae03fdd6a723661d07e43fb3312a7 to your computer and use it in GitHub Desktop.
Save zorem/d4eae03fdd6a723661d07e43fb3312a7 to your computer and use it in GitHub Desktop.
The function is going to add this new custom order status as paid statuses.
<?php
add_filter('woocommerce_order_is_paid_statuses', 'custom_status_woocommerce_order_is_paid_statuses');
function custom_status_woocommerce_order_is_paid_statuses($statuses)
{
$statuses[] = 'my-custom-status';
return $statuses;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment