Skip to content

Instantly share code, notes, and snippets.

@plusplugins
Created December 23, 2015 18:46
Show Gist options
  • Save plusplugins/f25cbcd45f271ca0b8fb to your computer and use it in GitHub Desktop.
Save plusplugins/f25cbcd45f271ca0b8fb to your computer and use it in GitHub Desktop.
Adding a custom field to Ultimate Members directory search options
add_filter('um_admin_custom_search_filters','add_my_custom_search_fields', 10, 1);
function add_my_custom_search_fields($fields) {
$fields['field_meta_key'] = array('title' => 'Enter field title'); // replace 'field_meta_key' with your field meta key
return $fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment