Tag Archives: Add

Remove the unwanted fields & add new fields to WordPress contact

Remove the unwanted fields from WordPress contact info In WordPress there are fields such as aim, yim, jabber which are not used by most of the sites.It can be removed by adding this code to the theme functions.php file. function extra_contact_info($contactmethods) { unset($contactmethods[‘aim’]); unset($contactmethods[‘yim’]); unset($contactmethods[‘jabber’]); return $contactmethods; } add_filter(‘user_contactmethods’, ‘extra_contact_info’); Add new fields to WordPress contact… Read More »