What is the meta_query key name for the woo product average rating? [closed]
There are two ways of passing meta arguments to the WP_Query/get_posts, you can check them both in the documentation for WP_Query. There is a single meta structure, like this $args = array( ‘meta_key’ => ‘color’, ‘meta_value’ => ‘blue’, ‘meta_compare’ => ‘!=’ ); And a multi meta structure, like this $args = array( ‘meta_query’ => array( … Read more