Title: Large CSV Import Handler
Author: firimar
Published: <strong>2016 年 8 月 6 日</strong>
Last modified: 2016 年 8 月 5 日

---

搜索插件

**该插件尚未通过WordPress的最新3个主要版本进行测试**。 当与较新版本的WordPress一起
使用时，可能不再受到维护或支持，并且可能会存在兼容性问题。

![](https://ps.w.org/large-csv-import-handler/assets/icon-256x256.png?rev=1469323)

# Large CSV Import Handler

 作者：[firimar](https://profiles.wordpress.org/firimar/)

[下载](https://downloads.wordpress.org/plugin/large-csv-import-handler.0.9.zip)

 * [详情](https://cn.wordpress.org/plugins/large-csv-import-handler/#description)
 * [评价](https://cn.wordpress.org/plugins/large-csv-import-handler/#reviews)
 *  [安装](https://cn.wordpress.org/plugins/large-csv-import-handler/#installation)
 * [开发进展](https://cn.wordpress.org/plugins/large-csv-import-handler/#developers)

 [支持](https://wordpress.org/support/plugin/large-csv-import-handler/)

## 描述

This simple plugin allows you to import any type of data from large CSV files into
your wordpress installation.

Plugin reads CSV file and performs import of its records one by one through AJAX
requests, so there are no server timeout issues.

You only need to provide PHP function to perform import of CSV field values into
post or taxonomy term or whatever you need.

Usage example:

For example, assume we want to import posts from such CSV file:
 title,text,brand,
image “Check this”,”Samsung content”,Samsung,”https://upload.wikimedia.org/wikipedia/
commons/thumb/2/24/Samsung_Logo.svg/2000px-Samsung_Logo.svg.png” “Some news”,”NewsHere
are some news”,Philips,”http://www.underconsideration.com/brandnew/archives/philips_2013_logo_detail.
png”

Here we have post title, post content, custom field Brand and thumbnail image.

We can use this code in theme’s functions.php file to implement import function:

    ```
    add_action('lcih_import_csv_row', 'lcih_import_csv_row');
    function lcih_import_csv_row($row)
    {
     $post_data = array(
         'post_type' => 'post',
         'post_status' => 'publish',
         'post_title' => $row['title'],
         'post_content' => $row['text']
     );
     $post_id = wp_insert_post($post_data);
     if (!$post_id)
     {
         echo "Error inserting post.";
         return;
     }

     update_post_meta($post_id, 'brand', $row['brand']);

     if ($row['image'])
         LargeCSVImportHandlerPlugin::download_post_thumbnail($post_id, $row['image']);

     echo "Created post ".$post_id;
    }
    ```

After that we can go to plugin admin page, select CSV file to upload and click “
Start import” button. Import process will begin.

## 屏幕截图

 * [[
 * Admin import page
 * [[
 * Admin settings page

## 安装

Use the automatic installer from within the WordPress admin, or:

 1. Download the .zip file by clicking on the Download button on the right
 2. Unzip the file
 3. Upload the files to your plugins directory
 4. Go to the Plugins page from within the WordPress administration
 5. Click Activate for Large CSV Import Handler
 6. After activation a new Large CSV Import Handler menu item will appear in admin 
    area.
 7. Visit the Settings page to adjust values as you need.

You can now start using the plugin.

## 评价

![](https://secure.gravatar.com/avatar/0725b64a69792cceb9593700d7ff81cbda7162a09bfd1d81a15aa9eb399202f2?
s=60&d=retro&r=g)

### 󠀁[Awesome Work, Great Plugin](https://wordpress.org/support/topic/awesome-work-great-plugin/)󠁿

 [Rameez Iqbal](https://profiles.wordpress.org/rameez_iqbal/) 2017 年 5 月 11 日
2 回复

After trying almost all major CSV plugins, this is the one that works perfectly 
for large files. I have a file of 35MB with 83000 posts and was unable to import
them but this plugin did it with ease. No server time issues, simple to use. Recommended!

 [ 阅读所有1条评价 ](https://wordpress.org/support/plugin/large-csv-import-handler/reviews/)

## 贡献者及开发者

「Large CSV Import Handler」是开源软件。 以下人员对此插件做出了贡献。

贡献者

 *   [ firimar ](https://profiles.wordpress.org/firimar/)

[帮助将「Large CSV Import Handler」翻译成简体中文。](https://translate.wordpress.org/projects/wp-plugins/large-csv-import-handler)

### 对开发感兴趣吗?

您可以[浏览代码](https://plugins.trac.wordpress.org/browser/large-csv-import-handler/)，
查看[SVN仓库](https://plugins.svn.wordpress.org/large-csv-import-handler/)，或通过
[RSS](https://plugins.trac.wordpress.org/log/large-csv-import-handler/?limit=100&mode=stop_on_copy&format=rss)
订阅[开发日志](https://plugins.trac.wordpress.org/log/large-csv-import-handler/)。

## 额外信息

 *  版本 **0.9**
 *  最后更新：**10 年前**
 *  活跃安装数量 **10+**
 *  WordPress 版本 ** 3.0.1 或更高版本 **
 *  已测试的最高版本为 **4.6.30**
 *  语言
 * [English (US)](https://wordpress.org/plugins/large-csv-import-handler/)
 * 标签
 * [csv](https://cn.wordpress.org/plugins/tags/csv/)[data](https://cn.wordpress.org/plugins/tags/data/)
   [import](https://cn.wordpress.org/plugins/tags/import/)[posts](https://cn.wordpress.org/plugins/tags/posts/)
 *  [高级视图](https://cn.wordpress.org/plugins/large-csv-import-handler/advanced/)

## 评级

 5 星（最高 5 星）。

 *  [  1 条 5 星评价     ](https://wordpress.org/support/plugin/large-csv-import-handler/reviews/?filter=5)
 *  [  0 条 4 星评价     ](https://wordpress.org/support/plugin/large-csv-import-handler/reviews/?filter=4)
 *  [  0 条 3 星评价     ](https://wordpress.org/support/plugin/large-csv-import-handler/reviews/?filter=3)
 *  [  0 条 2 星评价     ](https://wordpress.org/support/plugin/large-csv-import-handler/reviews/?filter=2)
 *  [  0 条 1 星评价     ](https://wordpress.org/support/plugin/large-csv-import-handler/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/large-csv-import-handler/reviews/#new-post)

[查看全部评论](https://wordpress.org/support/plugin/large-csv-import-handler/reviews/)

## 贡献者

 *   [ firimar ](https://profiles.wordpress.org/firimar/)

## 支持

有话要说吗？是否需要帮助？

 [查看支持论坛](https://wordpress.org/support/plugin/large-csv-import-handler/)

## 捐助

您愿意支持这个插件的发展吗?

 [ 捐助此插件 ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=65AE4A3BTR6FE)