添加用户字段(user_meta)到用户资料编辑页面并获取

在进行WordPress功能开发的时候,我们经常需要一些附加的自定义字段来实现我们的需求,用户自定义字段也是WordPress中自定义字段的一种。有很多插件可以实现文章自定义字段的添加,比如本站中介绍过的Piklist插件。而支持创建用户自定义字段的插件却不多,即使有,也做得没有添加文章自定义字段那样方便。可能是因为添加用户自定义字段的需求比较少的缘故吧。今天我们来看一下怎么通过代码添加用户自定义字段。
通过代码添加用户自定义字段
在下面的实例代码中,我们将为用户资料编辑页面添加一个允许用户输入“微博用户名” 的自定义字段。直接把下面的代码复制到主题的functions.php或插件的功能代码中,即可在用户资料编辑页面看到一个“微博用户名”的表单项,该表单项的值将被作为用户自定义字段保存到WordPress 数据库的 wp_user_meta 数据表中。

add_action( 'show_user_profile', 'wizhi_extra_user_profile_fields' );
add_action( 'edit_user_profile', 'wizhi_extra_user_profile_fields' );
add_action( 'personal_options_update', 'wizhi_save_extra_user_profile_fields' );
add_action( 'edit_user_profile_update', 'wizhi_save_extra_user_profile_fields' );

function wizhi_save_extra_user_profile_fields( $user_id ){
if ( !current_user_can( 'edit_user', $user_id ) ) { return false; }
    update_user_meta( $user_id, 'weibo_username', $_POST['weibo_username'] );
}

function wizhi_extra_user_profile_fields( $user ){ ?>

附加用户字段

请输入微博用户名。

获取添加的用户自定义字段
添加好了用户自定义字段,下一步就是获取使用这个字段了,获取的方法很简单,WordPress为我们提供了get_user_meta函数。直接使用该函数即可获取我们添加的用户自定义字段。示例代码如下:

ID, 'weibo_username', true); 
?>

 

声明:本站资源绿色无后门无广告,可放心下载。如无特殊说明或标注,均为本站原创发布,转载请注明出处!