您可以使用wp_insert_post() 以编程方式添加新帖子。例如
$my_post = array(
\'post_title\' => wp_strip_all_tags( $json->title ),
\'post_content\' => $json->body,
\'post_status\' => \'publish\',
\'post_author\' => 1,
\'post_category\' => $json->categories
);
// Insert the post into the database
wp_insert_post( $my_post );
您的链接已过期,因此我无法看到JSON数据的结构。但答案是一样的。设置
cron job 或者使用他们的webhook(如果有的话)调用您设置此功能的页面
wp_insert_post()
用于自动过帐。