Skip to content

Instantly share code, notes, and snippets.

@mwangepatrick
Created April 26, 2023 06:52
Show Gist options
  • Save mwangepatrick/62d6ac456ad5472f87e762a7967b79cd to your computer and use it in GitHub Desktop.
Save mwangepatrick/62d6ac456ad5472f87e762a7967b79cd to your computer and use it in GitHub Desktop.
How to modify the ACF user object results
<?php
add_filter('acf/fields/user/result', 'my_acf_fields_post_object_result', 10, 4);
function my_acf_fields_post_object_result( $text, $user, $field, $post_id ) {
$text .= ' (' . $user->user_email . ')';
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment