Advertisement
MrPauloeN

Custom user profile fields on User Page

Nov 22nd, 2018
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.56 KB | None | 0 0
  1. /*
  2.  # Show custom user profile fields on User Page
  3.  *
  4.  # @param  object $profileuser A WP_User object
  5.  * @return void
  6.  */
  7.  
  8. function czystespalanie__extra_user_profile_fields( $user ) {
  9. ?>
  10.     <h3><?php _e( 'Shipping information', 'czystespalanie'); ?></h3>
  11. <hr/>
  12. <table class="form-table">
  13.     <tr>
  14.         <th><label for="address"><?php _e( 'Address', 'czystespalanie' ); ?></label></th>
  15.         <td><input type="text" name="address" id="address" value="<?php echo esc_attr( get_the_author_meta( 'address', $user->ID ) ); ?>" class="regular-text" />
  16.         <br />
  17.         </td>
  18.     </tr>
  19.  
  20.     <tr>
  21.         <th><label for="city"><?php _e( 'City', 'czystespalanie' ); ?></label></th>
  22.         <td><input type="text" name="city" id="city" value="<?php echo esc_attr( get_the_author_meta( 'city', $user->ID ) ); ?>" class="regular-text" />
  23.         <br />
  24.         </td>
  25.     </tr>
  26.  
  27.     <tr>
  28.         <th><label for="postalcode"><?php _e( 'Zip code', 'czystespalanie' ); ?></label></th>
  29.         <td><input type="text" name="postalcode" id="postalcode" value="<?php echo esc_attr( get_the_author_meta( 'postalcode', $user->ID ) ); ?>" class="regular-text code" />
  30.         <br />
  31.         </td>
  32.     </tr>
  33.  
  34.     <tr>
  35.         <th><label for="tel"><?php _e( 'Telephon', 'czystespalanie' ); ?></label></th>
  36.         <td><input type="tel" name="tel" id="tel" value="<?php echo esc_attr( get_the_author_meta( 'tel', $user->ID ) ); ?>" class="regular-text code" />
  37.         <br />
  38.         </td>
  39.     </tr>
  40. </table>
  41. <?php
  42. }
  43. add_action( 'show_user_profile', 'czystespalanie__extra_user_profile_fields', 10, 1 );
  44. add_action( 'edit_user_profile', 'czystespalanie__extra_user_profile_fields', 10, 1 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement