1

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

4

1 回答 1

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);
于 2013-01-08T22:46:53.080 回答