Advertisement
verygoodplugins

Untitled

Nov 23rd, 2020
655
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. function wpf_xprofile_data_after_save( $field ) {
  2.  
  3.     if ( function_exists( 'wp_fusion' ) ) {
  4.         wp_fusion()->user->push_user_meta( $field->user_id, array( 'bbp_field_' . $field->field_id => $field->value ) );
  5.     }
  6.  
  7. }
  8.  
  9. add_action( 'xprofile_data_after_save', 'wpf_xprofile_data_after_save' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement