我已经创建了一个前端“编辑配置文件”模板。在昵称文本框中输入值时,仅更新昵称。默认的WordPress论坛有一个选择菜单,允许/要求用户选择其display\\u名称(昵称文本框,display\\u名称选择菜单)。
我的表单没有这样做,因为我无法找到强制昵称另外更新display\\u名称的方法(即,我有一个昵称文本框,但没有display\\u名称的选择菜单-我想自动执行此操作)。
display\\u名称存储在“users”表中。昵称存储在“users\\u meta”表中。
保存代码:
<?php
/* Get user info. */
global $current_user, $wp_roles;
get_currentuserinfo();
/* Load the registration file. */
require_once( ABSPATH . WPINC . \'/registration.php\' );
/* If profile was saved, update profile. */
if ( \'POST\' == $_SERVER[\'REQUEST_METHOD\'] && !empty( $_POST[\'action\'] ) && $_POST[\'action\'] == \'update-user\' ) {
/* Update user password. */
if ( !empty($_POST[\'pass1\'] ) && !empty( $_POST[\'pass2\'] ) ) {
if ( $_POST[\'pass1\'] == $_POST[\'pass2\'] )
wp_update_user( array( \'ID\' => $current_user->id, \'user_pass\' => esc_attr( $_POST[\'pass1\'] ) ) );
else
$error = __(\'The passwords you entered do not match. Your password was not updated.\', \'profile\');
}
/* Update user information. */
if ( !empty( $_POST[\'url\'] ) )
update_usermeta( $current_user->id, \'user_url\', esc_url( $_POST[\'url\'] ) );
if ( !empty( $_POST[\'email\'] ) )
update_usermeta( $current_user->id, \'user_email\', esc_attr( $_POST[\'email\'] ) );
if ( !empty( $_POST[\'first-name\'] ) )
update_usermeta( $current_user->id, \'first_name\', esc_attr( $_POST[\'first-name\'] ) );
if ( !empty( $_POST[\'last-name\'] ) )
update_usermeta($current_user->id, \'last_name\', esc_attr( $_POST[\'last-name\'] ) );
if ( !empty( $_POST[\'description\'] ) )
update_usermeta( $current_user->id, \'description\', esc_attr( $_POST[\'description\'] ) );
if ( !empty( $_POST[\'display_name\'] ) )
update_usermeta($current_user->id, \'display_name\', esc_attr( $_POST[\'display_name\'] ) );
if ( !empty( $_POST[\'memberlocation\'] ) )
update_usermeta($current_user->id, \'memberlocation\', esc_attr( $_POST[\'memberlocation\'] ) );
if ( !empty( $_POST[\'skype\'] ) )
update_usermeta($current_user->id, \'skype\', esc_attr( $_POST[\'skype\'] ) );
/* Redirect so the page will show updated info. */
if ( !$error ) {
wp_redirect( get_permalink() );
exit;
}
global $wpdb;
global $current_user;
$current_user = wp_get_current_user();
$user_id = wp_get_current_user();
$nickname = \'testname\';
update_user_meta($user_id, \'nickname\', $nickname);
}
?>
表单代码:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>">
<div class="entry-content entry">
<?php the_content(); ?>
<?php if ( !is_user_logged_in() ) : ?>
<p class="warning">
<?php _e(\'You must be logged in to edit your profile.\', \'profile\'); ?>
</p><!-- .warning -->
<?php else : ?>
<?php if ( $error ) echo \'<p class="error">\' . $error . \'</p>\'; ?>
<form method="post" id="adduser" action="<?php the_permalink(); ?>">
<p class="form-nickname">
<label for="nickname"><?php _e(\'Add display name *\', \'profile\'); ?></label>
<input class="text-input" name="nickname" type="text" id="nickname" value="<?php the_author_meta( \'nickname\', $current_user->id ); ?>" />
</p><!-- .form-memberlocation -->
<p class="form-email">
<label for="email"><?php _e(\'E-mail *\', \'profile\'); ?></label>
<input class="text-input" name="email" type="text" id="email" value="<?php the_author_meta( \'user_email\', $current_user->id ); ?>" />
</p><!-- .form-email -->
<p class="form-memberlocation">
<label for="memberlocation"><?php _e(\'Member Location *\', \'profile\'); ?></label>
<input class="text-input" name="memberlocation" type="text" id="memberlocation" value="<?php the_author_meta( \'memberlocation\', $current_user->id ); ?>" />
</p><!-- .form-memberlocation -->
<p class="form-url">
<label for="url"><?php _e(\'Website\', \'profile\'); ?></label>
<input class="text-input" name="url" type="text" id="url" value="<?php the_author_meta( \'user_url\', $current_user->id ); ?>" />
</p><!-- .form-url -->
<p class="form-password">
<label for="pass1"><?php _e(\'Password *\', \'profile\'); ?> </label>
<input class="text-input" name="pass1" type="password" id="pass1" />
</p><!-- .form-password -->
<p class="form-password">
<label for="pass2"><?php _e(\'Repeat Password *\', \'profile\'); ?></label>
<input class="text-input" name="pass2" type="password" id="pass2" />
</p><!-- .form-password -->
<p class="form-textarea">
<label for="description"><?php _e(\'Biographical Information\', \'profile\') ?></label>
<textarea name="description" id="description" rows="3" cols="50"><?php the_author_meta( \'description\', $current_user->id ); ?></textarea>
</p><!-- .form-textarea -->
<p class="form-submit">
<?php echo $referer; ?>
<input name="updateuser" type="submit" id="updateuser" class="submit button" value="<?php _e(\'Update\', \'profile\'); ?>" />
<?php wp_nonce_field( \'update-user\' ) ?>
<input name="action" type="hidden" id="action" value="update-user" />
</p><!-- .form-submit -->
</form><!-- #adduser -->
<?php endif; ?>
</div><!-- .entry-content -->
</div><!-- .hentry .post -->
<?php comments_template( \'\', true ); ?>
<?php endwhile; ?>
<?php else: ?>
<p class="no-data">
<?php _e(\'Sorry, no page matched your criteria.\', \'profile\'); ?>
</p><!-- .no-data -->
<?php endif; ?>
当昵称在自定义页面模板中更新时,如何强制更新display\\u名称?