wc_get_is_paid_statuses() – Get list of statuses which are consider ‘paid’.

You appear to be a bot. Output may be restricted

Description

Get list of statuses which are consider 'paid'.

Usage

$array = wc_get_is_paid_statuses();

Parameters

Returns

array

Source

File name: woocommerce/includes/wc-order-functions.php
Lines:

1 to 3 of 3
function wc_get_is_paid_statuses() {
  return apply_filters( 'woocommerce_order_is_paid_statuses', array( 'processing', 'completed' ) );
}
 

 View on GitHub View on Trac