Social profile fields for users
Adds X, LinkedIn, Instagram and Facebook fields to user profiles. Themes and author boxes can show them with get_the_author_meta( 'linkedin' ).
<?php
add_filter(
'user_contactmethods',
static function ( $methods ) {
$methods['x'] = 'X (Twitter) URL';
$methods['linkedin'] = 'LinkedIn URL';
$methods['instagram'] = 'Instagram URL';
$methods['facebook'] = 'Facebook URL';
return $methods;
}
);
In these packs
- Users and profiles: Registration dates, last logins, social profile fields, longer sessions and stricter passwords.