Advertisement
scott74

Gravity Forms Social Addon

Feb 2nd, 2014
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.65 KB | None | 0 0
  1. add_filter( 'janrain_gforms_profile_data', 'add_birthday_field' );
  2.  
  3. function add_birthday_field( $fields ) {
  4.     $fields['birthday'] = array(
  5.         'name' => 'Birthday',
  6.         'function' => 'birthday_field'
  7.     );
  8.     return $fields;
  9. }
  10.  
  11.  
  12. function birthday_field( $profile ) {
  13.     return $profile->merged_poco->gender;
  14. }
  15.  
  16. add_filter( 'janrain_gforms_profile_data', 'add_gender_field' );
  17.  
  18. function add_gender_field( $fields ) {
  19.     $fields['birthday'] = array(
  20.         'name' => 'Gender',
  21.         'function' => 'gender_field'
  22.     );
  23.     return $fields;
  24. }
  25.  
  26. function gender_field( $profile ) {
  27.     return $profile->merged_poco->gender;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement