WC_Privacy::anonymize_orders_query()protected staticWC 3.4.0

For a given query, anonymize all matches.

Method of the class: WC_Privacy{}

No Hooks.

Return

Int. Count of orders that were anonymized.

Usage

$result = WC_Privacy::anonymize_orders_query( $query );
$query(array) (required)
Query array to pass to wc_get_orders().

Changelog

Since 3.4.0 Introduced.

WC_Privacy::anonymize_orders_query() code WC 8.7.0

protected static function anonymize_orders_query( $query ) {
	$orders = wc_get_orders( $query );
	$count  = 0;

	if ( $orders ) {
		foreach ( $orders as $order ) {
			WC_Privacy_Erasers::remove_order_personal_data( $order );
			$count ++;
		}
	}

	return $count;
}