eventsmanager

Allow subscriber as author

Apr 14th, 2025
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2.  
  3. function filter_wp_dropdown_users_args($query_args) {
  4. $query_args['who'] = ''; // reset the query
  5. $query_args['capability'] = ''; // reset the query
  6. $query_args['role__in'] = array( 'subscriber', 'administrator' );
  7. return $query_args;
  8. }
  9. add_filter('wp_dropdown_users_args', 'filter_wp_dropdown_users_args',100,1);
Add Comment
Please, Sign In to add comment