我的要求是 :: 创建一个类别以备份少量帖子(比如 10 个帖子),我只需要保存该数量的最新帖子。
我使用以下代码创建帖子:
$new_post = array(
'post_title' => $content,
'post_status' => 'publish',
'post_date' => $tweet_time,
'post_author' => 1,
'post_type' => 'post',
'post_category' => array(9)
);
$postid=wp_insert_post($new_post);