查看user-edit.php中的所有用户元数据或如何覆盖

时间:2017-07-21 11:01:37

标签: wordpress metadata edit

我已将一些元数据添加到用户的帐户页面中。

我希望在显示用户信息的user-edit.php页面中显示和编辑此数据。

我想过修改这个文件,但后来才意识到如果有WordPress更新,这个文件就会被覆盖。

我该怎么做?

1 个答案:

答案 0 :(得分:2)

它非常简单,应该与用于添加自定义用户个人资料字段的代码一起完成。

以下代码块会将自定义字段添加到用户个人资料中:

add_action( 'show_user_profile', 'my_custom_user_profile_field' );
add_action( 'edit_user_profile', 'my_custom_user_profile_field' );
function my_custom_user_profile_field( $user ) { ?>
    <h3>Custom Field</h3>
    <table class="form-table">
        <tr>
            <th><label for="my-custom-user-profile-field">Input Label:</label></th>
            <td>
                <input name="my-custom-user-profile-field" id="my-custom-user-profile-field" value="<?php echo esc_attr( get_the_author_meta( 'my-custom-user-profile-field', $user->ID ) ); ?>" class="regular-text" type="text">
            </td>
        </tr>
    </table>
<?php }

然后,您需要确保可以保存已添加的字段。您可以通过挂钩personal_options_updateedit_user_profile_update来实现此目的:

add_action( 'personal_options_update', 'save_my_custom_user_profile_field' );
add_action( 'edit_user_profile_update', 'save_my_custom_user_profile_field' );
function save_my_custom_user_profile_field( $user_id ) {
    if ( !current_user_can( 'edit_user', $user_id ) )
        return false;
    update_user_meta( absint( $user_id ), 'my-custom-user-profile-field', wp_kses_post( $_POST['my-custom-user-profile-field'] ) );
}