Guest User

Untitled

a guest
Nov 12th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. // Specify which users should show up in Edit Flow user lists.
  4. add_filter( 'ef_users_select_form_get_users_args', function( $args ) {
  5. unset( $args['who'] );
  6.  
  7. $args['role__in'] = array( 'administrator', 'editor', 'author' );
  8.  
  9. return $args;
  10. } );
Add Comment
Please, Sign In to add comment