如何在wordpress中为父页面创建子页面

时间:2015-11-02 18:09:06

标签: wordpress

我需要为所有页面(没有子页面)创建子页面。它应该是一次性的脚本/功能。我试着做那样的事情

$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 );

但不知道要做别的事。

1 个答案:

答案 0 :(得分:1)

您需要save_post操作,此处可以找到示例

http://pastebin.com/CvryjJCV