Skip to content

Instantly share code, notes, and snippets.

@digitalchild
Created February 20, 2015 07:34
Show Gist options
  • Select an option

  • Save digitalchild/8caf33ac79626ed2e71c to your computer and use it in GitHub Desktop.

Select an option

Save digitalchild/8caf33ac79626ed2e71c to your computer and use it in GitHub Desktop.
Add Profile fields
// Save fields
add_action( 'personal_options_update', 'pv_save_merchant_id' );
add_action( 'edit_user_profile_update', 'pv_save_merchant_id' );
// Display Fields
add_action( 'show_user_profile', 'pv_add_custom_merchant_id_field' );
add_action( 'edit_user_profile', 'pv_add_custom_merchant_id_field' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment