【发布时间】:2021-04-08 10:04:42
【问题描述】:
我必须插入多个帖子。一个一个地插入帖子需要时间。他们有什么方法可以在一个查询中插入所有帖子($array)吗?
$my_post = array(
'post_title' => $row->title,
'post_content' => $row->content,
'post_status' => 'publish',
'post_date_gmt' => $row->created_at,
'post_date' => $row->created_at,
'post_author' => 1,
'post_excerpt' => 'test',
'tags_input' => $tags,
'post_category' => array(1,2)
);
wp_insert_post( $my_post );
}
【问题讨论】: