我正在创建用户元字段。我必须实现一个名为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\']);
我错在哪里?