WordPress后台个人资料增加字段,前台读取


之前接了一个项目需要用户在前台看见自己提交信息的进度和属于自己的文件,在网上收集了一下资料整理了一下如下可套用,里面的信息自行替换

在主题的 functions.php 里添加下面的代码:

add_action( 'show_user_profile', 'extra_user_profile_fields' );
add_action( 'edit_user_profile', 'extra_user_profile_fields' );
 
function extra_user_profile_fields( $user ) { ?>
<h3><?php _e("进度信息", "blank"); ?></h3>
 
<table class="form-table">
	<tr>
		<th><label for="jindu"><?php _e("进度通知"); ?></label></th>
		<td>
			<input type="text" name="jindu" id="jindu" value="<?php echo esc_attr( get_the_author_meta( 'jindu', $user->ID ) ); ?>" class="regular-text" /><br />
			<span class="description"><?php _e("填写规范:通过,审核中,未通过"); ?></span>
		</td>
	</tr>
	<tr>
		<th><label for="jinducolor"><?php _e("审核颜色"); ?></label></th>
		<td>
			<input type="text" name="jinducolor" id="jinducolor" value="<?php echo esc_attr( get_the_author_meta( 'jinducolor', $user->ID ) ); ?>" class="regular-text" /><br />
			<span class="description"><?php _e("填写规范:通过:green,审核中:orange,未通过:red"); ?></span>
		</td>
	</tr>
	<tr>
		<th><label for="jindutime"><?php _e("最后审核时间"); ?></label></th>
		<td>
			<input type="text" name="jindutime" id="jindutime" value="<?php echo esc_attr( get_the_author_meta( 'jindutime', $user->ID ) ); ?>" class="regular-text" /><br />
			<span class="description"><?php _e("最后审核时间"); ?></span>
		</td>
	</tr>
	<tr>
		<th><label for="xinxi"><?php _e("信息下载"); ?></label></th>
		<td>
			<input type="text" name="xinxi" id="xinxi" value="<?php echo esc_attr( get_the_author_meta( 'xinxi', $user->ID ) ); ?>" class="regular-text" /><br />
			<span class="description"><?php _e("信息下载"); ?></span>
		</td>
	</tr>
</table>
<?php }
 
add_action( 'personal_options_update', 'save_extra_user_profile_fields' );
add_action( 'edit_user_profile_update', 'save_extra_user_profile_fields' );
 
function save_extra_user_profile_fields( $user_id ) {
 
	if ( !current_user_can( 'edit_user', $user_id ) ) { return false; }
 
	update_usermeta( $user_id, 'jindu', $_POST['jindu'] );
	update_usermeta( $user_id, 'jindutime', $_POST['jindutime'] );
	update_usermeta( $user_id, 'jinducolor', $_POST['jinducolor'] );
	update_usermeta( $user_id, 'xinxi', $_POST['xinxi'] );
}

2.前台显示代码

<?php echo $current_user->jinducolor;?>">

发表回复

后才能评论