WordPress
user_contactmethods filter hook을 사용하여 사용자의 연락처 정보 추가 / 제거
수색…
가장 널리 사용되는 소셜 네트워크 사용 설정
function social_profiles( $contactmethods ) {
$contactmethods['facebook_profile'] = 'Facebook Profile URL';
$contactmethods['twitter_profile'] = 'Twitter Profile URL';
$contactmethods['google_profile'] = 'Google Profile URL';
$contactmethods['linkedin_profile'] = 'Linkedin Profile URL';
$contactmethods['github_profile'] = 'GitHub Profile URL';
$contactmethods['behance_profile'] = 'Behance Profile URL';
$contactmethods['dribbble_profile'] = 'Dribbble Profile URL';
$contactmethods['stack_profile'] = 'Stack Exchange Profile URL';
$contactmethods['twitch_profile'] = 'Twitch Profile URL';
$contactmethods['angellist_profile'] = 'AngelList Profile URL';
return $contactmethods;
}
add_filter( 'user_contactmethods', 'social_profiles', 10, 1);
대시 보드에이 fileds가 표시됩니다.
그리고 이것은 코드에서 그것을 검색하는 방법입니다.
<?php $user_stack_exchange = get_the_author_meta( 'stack_profile' ); ?>
연락 방법 삭제
function remove_contact_methods( $contactmethods ) {
unset($contactmethods['facebook_profile']);
unset($contactmethods['twitter_profile']);
return $contactmethods;
}
add_filter( 'user_contactmethods', 'remove_contact_methods', 10, 1);
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow