Quantcast
Viewing all articles
Browse latest Browse all 33

How to Easily Modify The Information Of User Contact in WordPress!

Image may be NSFW.
Clik here to view.
wp contact info
The default user profile allows users to display their msn, aim, jabber and yahoo messenger addresses.  But in 2010, you might want to add more recent services such as Twitter or Facebook. Here’s a tip to do modify the information of user contact.

Simply paste the following function into your theme functions.php file. Lines 2, 3 and 4 are for removing unnecessary items, and lines 5, 6 and 7 add news items. That’s simple as that.

function extra_contact_info($contactmethods) {
    unset($contactmethods['aim']);
    unset($contactmethods['yim']);
    unset($contactmethods['jabber']);
    $contactmethods['facebook'] = 'Facebook';
    $contactmethods['twitter'] = 'Twitter';
    $contactmethods['linkedin'] = 'LinkedIn';

    return $contactmethods;
}
add_filter('user_contactmethods', 'extra_contact_info');

 

Advanced users would probably enjoy this class which allow you to manage user contact info easily.

Big thanks Thomas Griffin for the snippet!

The post How to Easily Modify The Information Of User Contact in WordPress! appeared first on WordPress Experts.


Viewing all articles
Browse latest Browse all 33

Trending Articles