wordpress如何在后台添加用户时添加自定义字段,下面模板兔给出相关代码:
1 |
function userMetaBirthdayForm(WP_User $user) { ?> <h2>Birthday</h2> <table class="form-table"> <tr> <th><label for="user_birthday">Birthday</label></th> <td> <input type="date" value="<?php echo esc_attr(get_user_meta($user->ID, 'birthday', true)); ?>" name="user_birthday" id="user_birthday" > <span class="description">Some description to the input</span> </td> </tr> </table> <?php } add_action('show_user_profile', 'userMetaBirthdayForm'); // editing your own profile add_action('edit_user_profile', 'userMetaBirthdayForm'); // editing another user add_action('user_new_form', 'userMetaBirthdayForm'); // creating a new user function userMetaBirthdaySave($userId) { if (!current_user_can('edit_user', $userId)) { return; } update_user_meta($userId, 'birthday', $_REQUEST['user_birthday']); } add_action('personal_options_update', 'userMetaBirthdaySave'); add_action('edit_user_profile_update', 'userMetaBirthdaySave'); add_action('user_register', 'userMetaBirthdaySave'); |
以上是添加用户、编辑用户、个人资料更新时都有效。
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。