3

我已经添加并一直在使用表中的 USERMETA 字段(称为user_custom_hash:)wp_usermeta。意味着我已经Insert//来自某个地方的代码字段EditDeleting

之前不需要展示出来。
所以现在..

  • 如何USERMETA在 Wordpress 管理仪表板的用户配置文件页面上显示此字段?(我的意思是管理仪表板上的“编辑用户”页面。)

例如:

  • Custom Hash Key: __239cc68ba2423ddf67dcfcd4aa2fa83b__

我的意思是,在这里某处展示:

在此处输入图像描述

Note:
Wordpress Version currently: 3.5.0

4

1 回答 1

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将此代码段添加到我当前主题文件夹的文件底部。

注意:
上面的整个代码之后,?>整个文件就像以前一样正常。

于 2013-06-05T07:16:06.490 回答