问题描述
用户个人资料页面具有以下字段:
用户名称姓氏昵称显示名称联系方式 E-mail 网站 AIM Yahoo IM Jabber / Google Talk
如何将更多的字段添加到此部分。字段,如电话号码,地址或任何其他。
最佳解决方案
您需要使用'show_user_profile'
,'edit_user_profile'
,'personal_options_update'
和'edit_user_profile_update'
钩。
以下是添加电话号码的代码:
add_action( 'show_user_profile', 'yoursite_extra_user_profile_fields' );
add_action( 'edit_user_profile', 'yoursite_extra_user_profile_fields' );
function yoursite_extra_user_profile_fields( $user ) {
?>
<h3><?php _e("Extra profile information", "blank"); ?></h3>
<table class="form-table">
<tr>
<th><label for="phone"><?php _e("Phone"); ?></label></th>
<td>
<input type="text" name="phone" id="phone" class="regular-text"
value="<?php echo esc_attr( get_the_author_meta( 'phone', $user->ID ) ); ?>" /><br />
<span class="description"><?php _e("Please enter your phone."); ?></span>
</td>
</tr>
</table>
<?php
}
add_action( 'personal_options_update', 'yoursite_save_extra_user_profile_fields' );
add_action( 'edit_user_profile_update', 'yoursite_save_extra_user_profile_fields' );
function yoursite_save_extra_user_profile_fields( $user_id ) {
$saved = false;
if ( current_user_can( 'edit_user', $user_id ) ) {
update_user_meta( $user_id, 'phone', $_POST['phone'] );
$saved = true;
}
return true;
}
该代码将添加一个字段到您的用户屏幕看起来像这样:
还有几个可用于该主题的博客文章可能是有帮助的:
-
添加和使用自定义用户配置文件字段
-
向 WordPress 用户配置文件添加额外的字段
或者如果您不想 roll-your-own,则会添加以下功能的插件 (尽管我确信还有其他功能):
-
Cimy 用户额外字段
次佳解决方案
// remove aim, jabber, yim
function hide_profile_fields( $contactmethods ) {
unset($contactmethods['aim']);
unset($contactmethods['jabber']);
unset($contactmethods['yim']);
return $contactmethods;
}
// add anything else
function my_new_contactmethods( $contactmethods ) {
//add Birthday
$contactmethods['birthday'] = 'Birthday';
//add Address
$contactmethods['address'] = 'Address';
//add City
$contactmethods['city'] = 'City';
//add State
$contactmethods['state'] = 'State';
//add Postcode
$contactmethods['postcode'] = 'Postcode';
//add Phone
$contactmethods['phone'] = 'Phone';
//add Mobilphone
$contactmethods['mphone'] = 'Mobilphone';
return $contactmethods;
}
add_filter('user_contactmethods','my_new_contactmethods',10,1);
add_filter('user_contactmethods','hide_profile_fields',10,1);
希望这可以帮助。
资料来源:WPBeginner
参考文献
注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。