我正在制作用户元字段。我必须实现一个名为business_profile
的字段并在其上实现编辑器。我已经实现了编辑器,但我似乎无法保存其值或检索它。以下是我的代码。
<tr>
<th>
<label for="address">Business Profile</label></th>
<td><?php
$content = get_the_author_meta('business_profile', $user->ID);
$editor_id = 'mycustomeditor';
wp_editor($content, $editor_id);
?>
</td>
</tr>
更新:
update_usermeta($user_id, 'business_profile', $_POST['business_profile']);
我哪里错了?
答案 0 :(得分:1)
您的代码应该是
update_usermeta($user_id, 'business_profile', $_POST['mycustomeditor']);
由于mycustomeditor
是$editor_id
,因此$ _POST
变量将被命名。
business_profile
只是用户meta_data
或user_meta
名称。
看起来你只是把两者弄糊涂了。