ホームページ > php教程 > php手册 > Add and Remove Profile Fields to WordPress User?Fo

Add and Remove Profile Fields to WordPress User?Fo

WBOY
リリース: 2016-06-06 20:08:57
オリジナル
1068 人が閲覧しました

The WordPress user profile screen allows you to set values for social services but some default services are irrelevant, namely AIM and Yahoo! IM; ?add to that the fact that Twitter and Facebook fields are missing. ?You quickly realize tha

The WordPress user profile screen allows you to set values for social services but some default services are irrelevant, namely AIM and Yahoo! IM; ?add to that the fact that Twitter and Facebook fields are missing. ?You quickly realize that the default form…needs work. ?WordPress provides a method for adding and removing profile fields. ?Let me show you how it works!

Filter Setup

The first step is creating a function in your functions.php file which will accept an array of profile keys and values:

function modify_contact_methods($profile_fields) {
	// Field addition and removal will be done here
}
add_filter('user_contactmethods', 'modify_contact_methods');
ログイン後にコピー

This function provides access to that important protected array. ?The returned value becomes the list of user profile fields.

Adding a Profile Field

Adding a new field, Twitter handle for example, includes adding a key to the passed in array, with a value which will act as the field label:

function modify_contact_methods($profile_fields) {
	// Add new fields
	$profile_fields['twitter'] = 'Twitter Username';
	$profile_fields['facebook'] = 'Facebook URL';
	$profile_fields['gplus'] = 'Google+ URL';
	return $profile_fields;
}
add_filter('user_contactmethods', 'modify_contact_methods');
ログイン後にコピー

Simply adding that key/value to the array adds a new field to the form.

Removing a Profile Field

Conversely, removing a key from said array removes a field from the user profile form:

function modify_contact_methods($profile_fields) {
	// Add new fields
	$profile_fields['twitter'] = 'Twitter Username';
	$profile_fields['facebook'] = 'Facebook URL';
	$profile_fields['gplus'] = 'Google+ URL';
	// Remove old fields
	unset($profile_fields['aim']);
	return $profile_fields;
}
add_filter('user_contactmethods', 'modify_contact_methods');
ログイン後にコピー

The code above removes the AIM field from the edit profile form.

Retrieving Custom Field Values

To retrieve custom field values, use the?get_the_author_meta method:

// Retrieve a custom field value
$twitterHandle = get_the_author_meta('twitter');
ログイン後にコピー

The ability to easily add profile form fields is awesome; ?super easy to do, no plugin required!

Read the full article at: Add and Remove Profile Fields to WordPress User Form

Treehouse

Sencha Conference

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のおすすめ
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート