如何使用wordpress的核心功能添加页面。我也可以找到Post等功能,但找不到任何可以帮助我的人。 感谢
答案 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);