plugin-icon

Large CSV Import Handler

제작자: firimar·
Provides ability to import any type of data from large CSV files into Wordpress
등급
5/5
버전
0.9
활성화된 설치 항목
10
최근 업데이트일
Aug 5, 2016

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.

무료Business 요금제에서
설치하면 WordPress.com 서비스 약관서드파티 플러그인 약관에 동의하게 됩니다.
테스트된 버전
WordPress 4.6.30
이 플러그인은 다운로드할 수 있으며 에서 사용할 수 있습니다.