Skip to content

Instantly share code, notes, and snippets.

@AngeliMae
Created July 4, 2022 12:11
Show Gist options
  • Select an option

  • Save AngeliMae/d41ca5d2a74f6100152f07bf754cf20e to your computer and use it in GitHub Desktop.

Select an option

Save AngeliMae/d41ca5d2a74f6100152f07bf754cf20e to your computer and use it in GitHub Desktop.
Add email on the menu short tag
add_filter( 'um_allowed_user_tags_patterns', function( $pattern_array ){
$pattern_array[] = '{email}';
return $pattern_array;
});
add_filter( "um_profile_tag_hook__email", function( $value, $user_id ){
$value = um_user( 'user_email' );
return $value;
},10,2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment