是否可以将表格中的数据提供给wordpress?

时间:2019-01-13 19:07:36

标签: wordpress plugins backend

我正在一个类似wordpress的归档网站上工作。现在我正在考虑如何加快内容上传过程。

通常,您首先需要通过wp后端注册每个人,然后将一个或多个项目与该人相关联。我要问的是,是否可以自动化为每个人手动添加新条目的过程。我在excel表中具有自定义“人”帖子类型的数据。是否有插件或其他方法可以加快速度?

谢谢!

1 个答案:

答案 0 :(得分:1)

/ *编辑* /

刚刚找到了这个插件。您可以从JSON导入到发布

https://wordpress.org/plugins/json-importer/

+

How to Export Excel to JSON

/ *编辑结束* /

不知道是否有任何插件。

但是我会另辟way径。您可以创建一个php文件,并使用wp_insert_post()从JSON或CSV插入信息。

// Create post object
  $my_post = array();
  $my_post['post_title'] = 'Person Name';
  $my_post['post_content'] = 'Information about Person.';
  $my_post['post_status'] = 'publish';
  $my_post['post_author'] = 1;
  $my_post['post_category'] = array(8,39);

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

https://developer.wordpress.org/reference/functions/wp_insert_post/

可能有帮助的答案

https://stackoverflow.com/a/34435434/10909061

https://stackoverflow.com/a/19187094/10909061