WordPress教程之添加用户自定义字段(user_meta)到用户资料
在我们进行WordPress前端用户中心功能开发的时候,经常会需要一些自定义字段来实现我们的需求,很多的插件可以实现我们的需求,今天路途吧分享的是免插件实现添加用户自定义字段(user_meta)到用户资料的教程。
今天我们来看一下怎么通过代码免插件实现添加用户自定义字段。
功能截图
添加用户自定义字段
首先我们在用户资料编辑页面添加一行“微信号码” 的自定义字段。直接把下面的代码复制到主题的functions.php文件中,即可在用户资料编辑页面看到一个“QQ号码”的表单项。
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, \\\\\\\'wx_username\\\\\\\', $_POST[\\\\\\\'wx_username\\\\\\\'] );
}
function wizhi_extra_user_profile_fields( $user ){ ?>
<h3>附加用户字段</h3>
<table class=\\\\\\\"form-table\\\\\\\">
<tr>
<th><label for=\\\\\\\"wx_username\\\\\\\">微博用户名</label></th>
<td>
<input type=\\\\\\\"text\\\\\\\" id=\\\\\\\"wx_username\\\\\\\" name=\\\\\\\"wx_username\\\\\\\" size=\\\\\\\"20\\\\\\\" value=\\\\\\\"<?php echo esc_attr( get_the_author_meta( \\\\\\\'wx_user_name\\\\\\\', $user->ID )); ?>\\\\\\\">
<span class=\\\\\\\"description\\\\\\\">请输入微博用户名。</span>
</td>
</tr>
</table>
<?php }?>
调用自定义字段
添加好了用户自定义字段后,改如何获取使用这个字段呢,获取的方法也很简单,示例代码如下:
<?php
$current_user = wp_get_current_user();
get_user_meta( $current_user->ID, \\\\\\\'wx_username\\\\\\\', true);
?>
今天的wordpress教程对您有没有一些帮助呢?如果有的话请分享给其他需要的朋友。
本站声明:
1. 本站所有资源来源于网络,分享目的仅供大家学习和交流! 2. 不得使用于非法商业用途,不得违反国家法律。否则后果自负! 3. 本站提供的资源,都不包含技术服务请大家谅解! 4. 如有链接无法下载、失效或广告,请联系站长处理!
1. 本站所有资源来源于网络,分享目的仅供大家学习和交流! 2. 不得使用于非法商业用途,不得违反国家法律。否则后果自负! 3. 本站提供的资源,都不包含技术服务请大家谅解! 4. 如有链接无法下载、失效或广告,请联系站长处理!
再次声明:如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
本站所有资源解压密码均为www.huziy.com或者www.92luntan.com