How To Find The ID Of All Registered Users?
WP_User_Query has an ‘exclude’ argument, which is designed to accept an array of user IDs to exclude. Since it will accept an empty array, when that’s the only parameter, the resulting object will contain all registered users. The most direct path to the IDs is via the $results property. We can reduce $results to just … Read more