Members
94The best WordPress membership and user role editor plugin. User Roles & Capabilities editor helps you rest...
Plugin adds social fields to user profile in admin panel (Dashboard > Users).
User Social Profiles is a WordPress plugin that allows you to display additional social media profiles for users on your site. It requires your theme or child theme to support it and uses the native WordPress function to retrieve and display the profile links. You can show links for platforms like Twitter, Facebook, Google+, Instagram, and Pinterest using provided code examples.
This plugin is suitable for WordPress users who want to enhance author profiles by linking to their social media accounts, making it easier for visitors to connect with them across various platforms.
Best for: This plugin is best for WordPress site owners looking to add social media links to user profiles.
What it does well
Where it falls short
User Social Profiles provides a straightforward way to enhance user profiles with social media links, but its reliance on theme support and lack of recent updates may limit its appeal.
Patryk Kachel's own description of User Social Profiles, lightly tidied.
To use this plugin – your theme (or child theme) must support it.
To display additional profiles for user you just need to use native WordPress function the_author_meta( 'profile-name' ) where ‘profile name’ can be ‘twitter’, ‘facebook’, ‘googleplus’, ‘instagram’, ‘pinterest’.
Code example (with Font Awesome Icons):
<?php
$prefix_twitter_url = get_the_author_meta( 'twitter' );
$prefix_facebook_url = get_the_author_meta( 'facebook' );
$prefix_googleplus_url = get_the_author_meta( 'googleplus' );
$prefix_instagram_url = get_the_author_meta( 'instagram' );
$prefix_pinterest_url = get_the_author_meta( 'pinterest' );
?>
<?php if ( ! empty( $prefix_twitter_url ) ) : ?><a href="<?php the_author_meta( 'twitter' ) ?>"><span class="fa fa-twitter"></span></a><?php endif; ?>
<?php if ( ! empty( $prefix_facebook_url ) ) : ?><a href="<?php the_author_meta( 'facebook' ) ?>"><span class="fa fa-facebook"></span></a><?php endif; ?>
<?php if ( ! empty( $prefix_googleplus_url ) ) : ?><a href="<?php the_author_meta( 'googleplus' ) ?>"><span class="fa fa-google-plus"></span></a><?php endif; ?>
<?php if ( ! empty( $prefix_instagram_url ) ) : ?><a href="<?php the_author_meta( 'instagram' ) ?>"><span class="fa fa-instagram"></span></a><?php endif; ?>
<?php if ( ! empty( $prefix_pinterest_url ) ) : ?><a href="<?php the_author_meta( 'pinterest' ) ?>"><span class="fa fa-pinterest"></span></a><?php endif; ?>
You can see it in action here: https://pencil1.blogonyourown.com/author/robertsummer/
Other plugins for managing users.
The best WordPress membership and user role editor plugin. User Roles & Capabilities editor helps you rest...
User Role Editor WordPress plugin makes user roles and capabilities changing easy. Edit/add/delete WordPress u...
LoginPress is a Custom Login Page Customizer plugin allows you to easily customize the layout of login, admin...
Build membership sites with tiered plans, content restriction, drag-&-drop custom registration & login...
Customize your WordPress login page with live preview. Change logo, background, colors, and form styling witho...
Powerful user profile plugin to create front-end user registration forms, login & user profile forms. Incl...