Advertisement
verygoodplugins

Untitled

Feb 24th, 2025
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function wpf_fix_missing_email( $post_data ) {
  2.  
  3. if ( empty( $post_data['user_email'] ) && is_email( $post_data['display_name'] ) ) {
  4. $post_data['user_email'] = $post_data['display_name'];
  5. }
  6.  
  7. return $post_data;
  8. }
  9.  
  10. add_filter( 'wpf_user_register', 'wpf_fix_missing_email' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement