Advertisement
verygoodplugins

Untitled

May 16th, 2019
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. function erase_empty_date_fields( $user_id, $user_meta ) {
  2.  
  3.     if( empty( $user_meta['nordic_walking_trainer'] ) ) {
  4.         delete_user_meta( $user_id, 'nordic_walking_trainer' );
  5.     }
  6.  
  7.     if( empty( $user_meta['beginn_nordic_walking_trainer_online_zugang'] ) ) {
  8.         delete_user_meta( $user_id, 'beginn_nordic_walking_trainer_online_zugang' );
  9.     }
  10.  
  11. }
  12.  
  13. add_action( 'wpf_user_updated', 'erase_empty_date_fields', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement