我需要为所有页面(没有子页面)创建子页面。它应该是一次性的脚本/功能。我试着做那样的事情
$my_post = array(
'post_title' => 'My post',
'post_content' => 'This is my post.',
'post_status' => 'publish',
'post_author' => 1,
'post_category' => array(8,39)
);
wp_insert_post( $my_post );
但不知道要做别的事。