我在WP reference和Google中找不到任何关于它的信息,所以我问你:我想通过一个表单更新一篇文章,并使用它的子项。
$post = array(
\'ID\' => $mainid,
\'post_status\' => \'wartend\'
);
$lead = wp_update_post($post);
$children = get_children( $mainid );
foreach ($children as $child){
wp_update_post(
array(
\'ID\' => $child,
\'post_status\' => \'wartend\',
\'post_parent\' => $mainid
)
);
}
帖子正在更新,但孩子们没有更新。