我一直在 WordPress 中使用各种自定义用户字段(显示在用户个人资料上的字段)。随着 3.4 的更新,这些字段不再保存到数据库中。
这是我在 functions.php 文件中使用的代码。有谁知道这些在 3.4 中需要改变什么?
// Create Custom User Fields
add_action( 'show_user_profile', 'appUserAnswers' );
add_action( 'edit_user_profile', 'appUserAnswers' );
function appUserAnswers( $user ) { ?>
<h3>Your Answers</h3>
<table class="form-table">
<tr>
<th><label for="question-1">Question 1</label></th>
<td>
<textarea type="text" name="question-1" id="question-1" class="regular-text" rows="5" cols="30"><?php echo esc_attr( get_the_author_meta( 'question-1', $user->ID ) ); ?></textarea>
</td>
</tr>
</table>
<?php }
// Save Custom User Fields
add_action( 'personal_options_update', 'appSaveUserAnswers' );
add_action( 'edit_user_profile_update', 'appSaveUserAnswers' );
function appSaveUserAnswers( $user_id ) {
if ( !current_user_can( 'edit_user', $user_id ) )
return false;
// Copy and paste this line for additional fields. Make sure to change 'question-1' to the field ID.
update_usermeta( $user_id, 'matrix-diagnosis', $_POST['question-1'] );
}