Advertisement
verygoodplugins

Untitled

Aug 14th, 2020
1,167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. function pw_rcp_save_user_fields_on_profile_save( $user_id ) {
  2.  
  3.     update_user_meta( $user_id, 'rcp_profession', sanitize_text_field( $_POST['rcp_profession'] ) );
  4.  
  5.     update_user_meta( $user_id, 'rcp_location', sanitize_text_field( $_POST['rcp_location'] ) );
  6.  
  7. }
  8. add_action( 'rcp_user_profile_updated', 'pw_rcp_save_user_fields_on_profile_save', 10 );
  9. add_action( 'rcp_edit_member', 'pw_rcp_save_user_fields_on_profile_save', 10 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement