WordPress
User_contactmethods फ़िल्टर हुक वाले उपयोगकर्ताओं के लिए संपर्क जानकारी जोड़ें / निकालें
खोज…
सबसे लोकप्रिय सामाजिक नेटवर्क को सक्षम करना
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);
आप इसे अपने डैशबोर्ड में दर्ज करेंगे:
और यह है कि आप इसे कोड में कैसे पुनः प्राप्त करते हैं
<?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