DEV Community

Cover image for How To Add More Contact Fields to WordPress Profile
nightwolfdev
nightwolfdev

Posted on • Updated on • Originally published at nightwolf.dev

How To Add More Contact Fields to WordPress Profile

The WordPress Profile page allows you to define an email address and website, which you can then display on your site. Wouldn’t it be nice if you could define additional contact methods like GitHub, LinkedIn, and Twitter accounts? Let’s learn how to add more contact fields and display them on your site!

Add New Contact Options

To add new contact options to the WordPress Profile page, we’ll utilize the user_contactmethods filter hook. Navigate to Appearance > Theme Editor and open the template file in your theme called functions.php. Add the following code to it.

add_filter( 'user_contactmethods', 'my_custom_user_contact_methods' );
Enter fullscreen mode Exit fullscreen mode

The second parameter in the add_filter function is the name of the function you want to call. Let’s create that function now. It receives the current contact options as an argument. Let’s call them $options. Add the new options with the text that should appear as the field label and then return the options.

// Add user contact methods.
function my_custom_user_contact_methods( $options ) {
    $options['github'] = __( 'Github Username' );
    $options['linkedin'] = __( 'LinkedIn Username' );
    $options['twitter'] = __( 'Twitter Username' );

    return $options;
}
Enter fullscreen mode Exit fullscreen mode

Keep in mind that if you switch to a different theme, you would lose this functionality because it was added to your current theme’s functions.php file. If you want this functionality to persist, make it a WordPress plugin instead.

Display New Contact Options

To display a WordPress user’s (author) information, we first have to know which user we’re talking about. We need the user’s unique id.

To get the user’s id outside of the WordPress loop, use the following:

global $post;
$authorId = $post->post_author;
Enter fullscreen mode Exit fullscreen mode

To get the user’s id inside the WordPress loop, use the following:

$authorId = get_the_author_meta( 'ID' );
Enter fullscreen mode Exit fullscreen mode

Now let’s get the values of the new contact fields we created in the prior section. We can utilize the get_the_author_meta function again. The first argument defines the field you’d like retrieve about the user. The second argument defines the user’s unique id.

$github = get_the_author_meta( 'github', $authorId );
$linkedin = get_the_author_meta( 'linkedin', $authorId );
$twitter = get_the_author_meta( 'twitter', $authorId );
Enter fullscreen mode Exit fullscreen mode

Display the values wherever you’d like.

<a target="_blank" href="https://github.com/<?php echo $github; ?>">GitHub</a>

<a target="_blank" href="https://linkedin.com/in/<?php echo $linkedin; ?>">LinkedIn</a>

<a target="_blank" href="https://twitter.com/<?php echo $twitter; ?>">Twitter</a>
Enter fullscreen mode Exit fullscreen mode

Visit our website at https://nightwolf.dev and follow us on Facebook and Twitter!


Top comments (0)