我有一个图像id数组,我想将它们分配给特定的帖子:
foreach ($image_ids as $image_id)
var_dump(wp_insert_post(array(\'ID\' => $image_id, \'post_parent\' => $new_post_id), TRUE));
但出现错误:
object(WP_Error)#252 (2) {
["errors"]=>
array(1) {
["empty_content"]=>
array(1) {
[0]=>
string(38) "Content, title, and excerpt are empty."
}
}
["error_data"]=>
array(0) {
}
}
那么是否可以更新
post_parent
不更新其他数据?