Reputation: 549
I'd like to know if it is possible to pass some args to WP_User_Query that would allow me to select Authors that have some published WooCommerce products. Something like has_published_posts but for products. Any help would be appreciated!
Upvotes: 0
Views: 82
Reputation: 141
Use the option "has_published_posts"
$user_query = new WP_User_Query(
array(
'has_published_posts' => array( 'product' )
)
);
Upvotes: 1