Skip to content

Instantly share code, notes, and snippets.

@cojennin
Last active May 16, 2016 14:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cojennin/f6f181287fd48beb3df91bdaf4a22288 to your computer and use it in GitHub Desktop.
Save cojennin/f6f181287fd48beb3df91bdaf4a22288 to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: Edit Flow - User Group's For All
*/
function ef_show_all_users () {
return array(
'fields' => array(
'ID',
'display_name',
'user_email'
),
'orderby' => 'display_name',
);
}
add_filter( 'ef_users_select_form_get_users_args', 'ef_show_all_users' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment