Last active
October 3, 2016 08:02
-
-
Save neilgee/9ccec99d08176ca4998d to your computer and use it in GitHub Desktop.
Genesis WordPress Customised Author Box
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php // <~ do not copy the opening php tag | |
function themeprefix_modify_user_contact_methods( $user_contact ){ | |
/* Add user contact methods */ | |
$user_contact['pinterest'] = __( 'Pinterest URL' ); | |
$user_contact['linkedin'] = __( 'LinkedIn URL' ); | |
/* Remove user contact methods */ | |
unset($user_contact['aim']); | |
unset($user_contact['jabber']); | |
unset($user_contact['yim']); | |
return $user_contact; | |
} | |
add_filter( 'user_contactmethods', 'themeprefix_modify_user_contact_methods' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment