Skip to content

Instantly share code, notes, and snippets.

@WPprodigy
Created November 12, 2018 20:23
Show Gist options
  • Save WPprodigy/7b47a0f6bb73a8f0c5d366002576f2a6 to your computer and use it in GitHub Desktop.
Save WPprodigy/7b47a0f6bb73a8f0c5d366002576f2a6 to your computer and use it in GitHub Desktop.
Specify which users should show up in Edit Flow user lists.
<?php
// Specify which users should show up in Edit Flow user lists.
add_filter( 'ef_users_select_form_get_users_args', function( $args ) {
unset( $args['who'] );
$args['role__in'] = array( 'administrator', 'editor', 'author' );
return $args;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment