WC_Privacy::trash_cancelled_orders()public staticWC 3.4.0

Find and trash old orders.

Method of the class: WC_Privacy{}

Return

Int. Number of orders processed.

Usage

$result = WC_Privacy::trash_cancelled_orders( $limit );
$limit(int)
Limit orders to process per batch.
Default: 20

Changelog

Since 3.4.0 Introduced.

WC_Privacy::trash_cancelled_orders() code WC 8.6.1

public static function trash_cancelled_orders( $limit = 20 ) {
	$option = wc_parse_relative_date_option( get_option( 'woocommerce_trash_cancelled_orders' ) );

	if ( empty( $option['number'] ) ) {
		return 0;
	}

	return self::trash_orders_query(
		apply_filters(
			'woocommerce_trash_cancelled_orders_query_args',
			array(
				'date_created' => '<' . strtotime( '-' . $option['number'] . ' ' . $option['unit'] ),
				'limit'        => $limit, // Batches of 20.
				'status'       => 'wc-cancelled',
				'type'         => 'shop_order',
			)
		)
	);
}