Advertisement
verygoodplugins

Untitled

Mar 3rd, 2022
943
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. function test_function( $user_meta, $user_id ) {
  2.  
  3.     $user = get_user_by( 'id', $user_id );
  4.  
  5.     if ( $user->user_email !== $user_meta['user_email'] ) {
  6.  
  7.         // Do stuff here.
  8.         wpf_log( 'notice', $user_id, 'Email changed from ' . $user->user_email . ' to ' . $user_meta['user_email'] );
  9.  
  10.     }
  11.  
  12.     return $user_meta;
  13.  
  14. }
  15.  
  16. add_filter( 'wpf_pulled_user_meta', 'test_function', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement