Changeset 51943 for trunk/src/wp-includes/user.php
- Timestamp:
- 10/27/2021 06:42:13 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r51738 r51943 1321 1321 'role__in' => array(), 1322 1322 'role__not_in' => array(), 1323 'capability' => '', 1324 'capability__in' => array(), 1325 'capability__not_in' => array(), 1323 1326 ); 1324 1327 … … 1327 1330 $parsed_args = wp_parse_args( $args, $defaults ); 1328 1331 1329 $query_args = wp_array_slice_assoc( $parsed_args, array( 'blog_id', 'include', 'exclude', 'orderby', 'order', 'who', 'role', 'role__in', 'role__not_in' ) ); 1332 $query_args = wp_array_slice_assoc( 1333 $parsed_args, 1334 array( 1335 'blog_id', 1336 'include', 1337 'exclude', 1338 'orderby', 1339 'order', 1340 'who', 1341 'role', 1342 'role__in', 1343 'role__not_in', 1344 'capability', 1345 'capability__in', 1346 'capability__not_in', 1347 ) 1348 ); 1330 1349 1331 1350 $fields = array( 'ID', 'user_login' );
Note: See TracChangeset
for help on using the changeset viewer.