I wanted to know, how i am able to see all orders with:
- user meta key:
friseur
- user meta value:
TestFriseur
This is my code:
// Users query
$user_ids = (array) get_users([
'role' => 'customer',
'number' => - 1,
'fields' => 'ID',
'meta_query' => [
'relation' => 'OR',
[
'key' => 'TestFriseur',
'compare' => '!=',
'value' => 1
],
[
'key' => 'TestFriseur',
'compare' => 'NOT EXISTS'
]
],
]);
// Orders query (using the users IDs from the user query)
$orders = wc_get_orders([
'limit' => - 1,
'status' => ['on-hold','processing','completed'],
'customer_id' => $user_ids,
]);
// Loop through Order IDs
foreach( $orders as $order ) {
// Get the Order ID
echo $order_id = $order->get_id();
// And so on …
}
But unfortunately without the desired result. Any advice?
To get orders by user meta data, you can use a custom SQL Query with the
WPDB
class like: