Wordpress CRED / CRUD无法修改$ item数组

时间:2017-10-20 13:09:38

标签: php sql wordpress

当我在wordpress crud / cred表单上运行时,收到以下消息:更新项目时出错。

问题是当我尝试使用'name' => $item['name']

修改数组时

它似乎与'id' => $item['id']一起使用,但它似乎不接受我的自定义代码。

请注意,'name'

的sql表中有一个条目
$result = $wpdb->update($mytablename, $item, array(
    'id' => $item['id'], 
    'name' => $item['name'],
));
$item['name'] = 'test';

if ($result) {
    $message = __('Item was successfully updated', 'custom_table_name');
} else {
    $notice = __('There was an error while updating item', 'custom_table_name');
}

0 个答案:

没有答案