I want to get the "top earners" with highest revenues in my WooCommerce online shop. With
$top_10_products = new WP_Query(array("post_type" => "product",
"meta_key" => "total_sales",
"orderby" => "meta_value_num",
"posts_per_page" => 10));
I get the most sold products. But what's the meta_key for "top earners"?
Thanks and best regards Martin