我正在尝试取消设置/删除然后替换/更新帖子元字段中的单个值,但是我的 array_push() 和 unset() 代码正在删除每个数组中的所有值。
这是我当前使用的代码的两半。
首先,查找并删除旧值:
$ID = $_GET["post_id"];
$old = $entry["85"];
$old_meta = array();
$old_meta = get_post_meta($old,'_website',false);
if(in_array($ID, $old_meta[current][items])){
unset($old_meta[current][items][$ID]);
}
update_post_meta($old,'_website',$old_meta);
其次将新值附加到适当的位置:
$port = $entry["24"];
$new_meta = array();
$new_meta = get_post_meta($port,'_website',false);
$new_meta[content][items] = array();
array_push($new_meta[content][items],$ID);
update_post_meta($port,'_website',$new_meta);
它可以取消设置并插入正确的值,但 meta[current][items] 数组中存在的任何其他值(用于更新或取消设置)都将被删除。
在运行任何函数之前,数组看起来像这样:pastie.org/8112933
在我运行 array_push 之后,它看起来像这样:pastie.org/8112956
取消设置后它看起来像这样:pastie.org/8112974