Horje

Add Custom User Profile Fields

Remember not to remove the line: return $contactmethods; otherwise this won't work.

Example: PHP
// CUSTOM USER PROFILE FIELDS
   function my_custom_userfields( $contactmethods ) {

    // ADD CONTACT CUSTOM FIELDS
    $contactmethods['contact_phone_office']     = 'Office Phone';
    $contactmethods['contact_phone_mobile']     = 'Mobile Phone';
    $contactmethods['contact_office_fax']       = 'Office Fax';

    // ADD ADDRESS CUSTOM FIELDS
    $contactmethods['address_line_1']       = 'Address Line 1';
    $contactmethods['address_line_2']       = 'Address Line 2 (optional)';
    $contactmethods['address_city']         = 'City';
    $contactmethods['address_state']        = 'State';
    $contactmethods['address_zipcode']      = 'Zipcode';
    return $contactmethods;
   }
   add_filter('user_contactmethods','my_custom_userfields',10,1);



Single Articles
Add Custom User Profile FieldsWordpress Profile Shortcode
Option - 1Wordpress Profile Shortcode
Option - 2Wordpress Profile Shortcode


Related Articles
How to Add Custom User Profile Fields Wordpress Profile Shortcode
How to limit WooCommerce Title Lenght? Wordpress Profile Shortcode

Type:
Php
Category:
Web Tutorial
Sub Category:
Wordpress Profile Shortcode
Uploaded by:
Admin