Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- function filter_wp_dropdown_users_args($query_args) {
- $query_args['who'] = ''; // reset the query
- $query_args['capability'] = ''; // reset the query
- $query_args['role__in'] = array( 'subscriber', 'administrator' );
- return $query_args;
- }
- add_filter('wp_dropdown_users_args', 'filter_wp_dropdown_users_args',100,1);
Advertisement
Add Comment
Please, Sign In to add comment