-
-
Save remkus/9193be5c687965dfdff5 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 | |
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