Voulez-vous ajouter un nouveau champ “adresse” au profil de l’utilisateur ? Bien qu’il existe probablement un plugin pour cela, nous avons créé un extrait de code rapide que vous pouvez utiliser pour ajouter et afficher des informations de profil personnalisées dans WordPress.
Instructions:
Tout ce que vous avez à faire est d’ajouter ce code au fichier functions.php de votre thème ou dans un plugin spécifique à votre site:
<? add_action( 'show_user_profile', 'extra_user_profile_fields' ); add_action( 'edit_user_profile', 'extra_user_profile_fields' ); function extra_user_profile_fields( $user ) { ?> <h3><?php _e("Mailing details", "blank"); ?></h3> <table class="form-table"> <tr> <th><label for="address"><?php _e("Address"); ?></label></th> <td><input type="text" name="address" id="address" value="<?php echo esc_attr( get_the_author_meta( 'address', $user->ID ) ); ?>" class="regular-text" /><br /> <span class="description"><?php _e("Please type address here."); ?></span> </td> </tr> </table> <? } add_action( 'personal_options_update', 'save_extra_user_profile_fields' ); add_action( 'edit_user_profile_update', 'save_extra_user_profile_fields' ); function save_extra_user_profile_fields( $user_id ) { if ( !current_user_can( 'edit_user', $user_id ) ) { return false; } update_usermeta( $user_id, 'address', $_POST['address'] ); } ?>
Note : Si c’est la première fois que vous ajoutez des extraits de code dans WordPress, veuillez consulter notre guide sur la façon d’ajouter correctement des extraits de code dans WordPress, afin de ne pas casser accidentellement votre site.
Si vous avez aimé cet extrait de code, n’hésitez pas à consulter nos autres articles sur le site comme : 19 meilleurs plugins WordPress pour les organisations à but non lucratif et comment configurer le suivi Google analytics eCommerce pour WooCommerce.
Hey Kevin please let me know how can we add listbox and radio type input in the above snippet and how can we make certain fields required
Hi Amit, you only need to ask the question once I try and get to everything as fast as I can. I will add a snippet next week that will address this question about adding select and radio / checkboxes to the user profile section.
thanks Kevin
How can we add a Listbox and Radio type of fields in the above snippets and how can we make the certain fields required. Thanks in advance
How can we add a Listbox and Radio type of fields in the above snippets and how can we make the certain fields required. Thanks in advance
This code does’nt seem to work in 3.3.1, any ideas …
Got the error, it is just the the php tag error on line 14 it should be <?php
thanks a lot for these snippets, it is really helpful
Hi Amit, glad to see you got things working properly. Enjoy the snippets.
Brilliant! Your site has saved me hours of head scratching.
Thanks.
No problem, glad I could help.
[…] This post was mentioned on Twitter by wp_freak, WPSNIPP. WPSNIPP said: #wordpress Add & display custom profile info http://bit.ly/hTg1GX #blog please RT 🙂 […]