Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. add_action( 'show_user_profile', 'dealer_auction_extra_user_profile_fields' );
  2. add_action( 'edit_user_profile', 'dealer_auction_extra_user_profile_fields' );
  3. add_action( 'personal_options_update', 'dealer_auction_save_extra_user_profile_fields' );
  4. add_action( 'edit_user_profile_update', 'dealer_auction_save_extra_user_profile_fields' );
  5.  
  6. function dealer_auction_save_extra_user_profile_fields( $user_id )
  7. {
  8. if ( !current_user_can( 'edit_user', $user_id ) ) { return false; }
  9. update_user_meta( $user_id, 'dealer_registration_number', $_POST['dealer_registration_number'] );
  10. }
  11.  
  12. function dealer_auction_extra_user_profile_fields( $user )
  13. { ?>
  14. <h3>Extra Custom Meta Fields</h3>
  15.  
  16. <table class="form-table">
  17. <tr>
  18. <th><label for="dealer_registration_number">Dealer Number</label></th>
  19. <td>
  20. <input type="text" id="dealer_registration_number" name="dealer_registration_number" size="20" value="<?php echo esc_attr( get_the_author_meta( 'dealer_registration_number', $user->ID )); ?>">
  21. </td>
  22. </tr>
  23. </table>
  24.  
  25. <?php }?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement