Skip to content

Instantly share code, notes, and snippets.

@mojowill
Created August 14, 2012 09:54
Show Gist options
  • Save mojowill/3347920 to your computer and use it in GitHub Desktop.
Save mojowill/3347920 to your computer and use it in GitHub Desktop.
User Select for Rilwis Custom Meta Boxes
<?php
$users_list = array();
$users = get_users();
if ( !empty( $users ) )
$users_list = array_combine( wp_list_pluck( $users, 'ID' ), wp_list_pluck( $users, 'display_name' ) );
$meta_box = array(
'title' => 'Project Information',
'pages' => array( 'project' ),
'fields' => array(
array(
'name' => 'Member',
'id' => 'member',
'type' => 'select',
'options' => $users_list,
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment