Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function wpf_customize_field( $user_meta, $user_id ) {
- if ( isset( $user_meta['event_checkin'] ) ) {
- $user_meta['event_checkin'] = 'Yes';
- }
- return $user_meta;
- }
- add_filter( 'wpf_user_update', 'wpf_customize_field', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement