gpt4 book ai didi

php - 从另一个自定义数据库将帖子导入 wordpress

转载 作者:行者123 更新时间:2023-11-29 03:05:43 25 4
gpt4 key购买 nike

数据库模式。

ID    title    keywords    category    body      time
1 XX demo,tag main <html> NOW()
2 YY demo2,tag main <html> NOW()

这个数据库经常被另一个 webapp 更新。

我的问题是如何发布创建一个自定义 php 文件,该文件可以处理将新记录从该表发布到 wordpress 中?

我找到了 wp_insert_post api,当我用谷歌搜索时,但他们提到如果它不存在,就不会创建类别。

  foreach($data as $db){
$my_post = array();
$my_post['post_title'] = $db->title;
$my_post['post_content'] = $db->body;
$my_post['post_status'] = 'publish';
$my_post['post_author'] = 1;

//$my_post['post_category'] = array(8,39);//how to fetch the category id !
//$my_post['tags_input'] = explode(',',$db->keywords);///IS THIS CORRECT??

// Insert the post into the database
wp_insert_post( $my_post );}

有人可以解释一下我如何将数据库导出到带有类别(如果不存在则创建)、标签、标题、时间日期和内容的 wordpress 帖子中吗?

非常感谢

最佳答案

您可以使用 wp_create_category 创建类别- 您的导入脚本应该首先分析源数据并在必要时创建类别

关于php - 从另一个自定义数据库将帖子导入 wordpress,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15760540/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com