我已添加并使用user_custom_hash
表中的USERMETA字段(名为wp_usermeta
)。意味着我已经Insert
/ Edit
/ Deleting
来自代码中的字段。
之前无需显示。
所以现在......
USERMETA
字段? (我的意思是管理仪表板上的“编辑用户”页面。)例如:
Custom Hash Key: __239cc68ba2423ddf67dcfcd4aa2fa83b__
我的意思是,要在这里的某个地方展示:
Note:
Wordpress Version currently: 3.5.0
答案 0 :(得分:10)
现在好了,因为我自己得到了,就像这样:
add_action( 'show_user_profile', 'display_user_custom_hash' );
add_action( 'edit_user_profile', 'display_user_custom_hash' );
function display_user_custom_hash( $user ) { ?>
<h3>USERMETA Fields</h3>
<table class="form-table">
<tr>
<th><label>Custom Hash Key</label></th>
<td><input type="text" value="<?php echo get_user_meta( $user->ID, 'user_custom_hash', true ); ?>" class="regular-text" readonly=readonly /></td>
</tr>
</table>
<?php
}
functions.php
文件的底部。 注意:
之后应该是上面的整个代码,就像以前一样,只需要整个文件的正常?>
。