如何使用WP核心功能添加新页面

时间:2013-01-08 21:41:46

标签: wordpress-plugin wordpress-theming wordpress

如何使用wordpress的核心功能添加页面。我也可以找到Post等功能,但找不到任何可以帮助我的人。 感谢

1 个答案:

答案 0 :(得分:2)

您使用相同的功能添加帖子或页面,只需添加post_type参数,如下所示:

$args = array( 'post_type'  => 'page',
               'post_content' => 'You content...',
               'post_parent' => $parent_id; // ID of the page this one should be a child of
... // etc.
...
               'post_title' => 'Title for your page');

wp_insert_post ($args);