這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

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”,”News
Here 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.

使用者評論

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 則使用者評論

參與者及開發者

以下人員參與了開源軟體〈Large CSV Import Handler〉的開發相關工作。

參與者

將〈Large CSV Import Handler〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄