我在函数中有以下代码。wordpress主题的php文件
$ppost_data = build_post( $pID, $pcontent, $pname, $ptitle, $pstatus, $ptype, $pset_comment_status );
wp_insert_post($ppost_data);
下面是“build\\u post()”函数:
function build_post( $pID, $pcontent, $pname, $ptitle, $pstatus, $ptype, $pset_comment_status ) {
return array(
\'ID\'=>$pID,
\'post_content\'=>$pcontent,
\'post_name\'=>$pname,
\'post_title\'=>$ptitle,
\'post_status\'=>$pstatus,
\'post_type\'=>$ptype,
\'comment_status\'=>$pset_comment_status,
\'post_author\' => 1
);
所有变量都已设置,所有数据都在
$ppost_data
数组正确,但未添加页面。没有引发任何错误。有什么想法吗?