BLACK FRIDAY
Save 59% on PageForge Annual $191/year $485/year
Claim 59% Off →
CSV Importer icon
Actively maintained Tested up to 7.0.6 #13 in csv

CSV Importer

Import posts from CSV files into WordPress.

Active installs3K+1K+ tier
Downloads · 30d552▼ -12.7% vs prev. 30d
Rating4.2/528 reviews
Health score79/100Good
All-time downloads221.8KSince Mar 2009
Support resolved1 / 1100% in last 2 months
RequiresWP 3.1PHP 7.0+
Downloads · 7d130▼ -0.8% week over week
Our verdict

Solid choice

CSV Importer is a solid plugin choice in 2026, with a few things worth checking first. It runs on 3K+ sites, is rated 4.2/5 and was last updated 2 months ago, and scores 79/100 on our health check.

How does it stack up?

Side-by-side on installs, updates, ratings & support

Daily downloads

112233Jun 28Aug 11Sep 25
Yesterday24
Daily average (1y)17
Peak day44Jul 31, 2026
Last 12 months6.1K

Download spikes usually follow a new release — each site that auto-updates counts as a download.

Rankings

Where CSV Importer stands today

WordPress.org search rankings

Live position in the plugin search, top 100
KeywordPositionCompeting pluginsCategory
csv #3 4,710 Best csv plugins →
excel #24 897 Best excel plugins →
import #77 7,206 Best import plugins →
import csv #8 2,150 Best import csv plugins →
spreadsheet #23 1,006 Best spreadsheet plugins →

Version adoption

Share of active sites per release.

  • 0.462.1%
  • 0.337.9%

Rating breakdown

★★★★★★★★★★ 4.2 from 28 reviews

  • 5★67.9%
  • 4★14.3%
  • 3★0.00%
  • 2★3.6%
  • 1★14.3%

About CSV Importer

From the official readme · v0.4.2

Description

This plugin imports posts from CSV (Comma Separated Value) files into your WordPress blog. It can prove extremely useful when you want to import a bunch of posts from an Excel document or the like – simply export your document into a CSV file and the plugin will take care of the rest.

Features

  • Imports post title, body, excerpt, tags, date, categories etc.
  • Supports custom fields, custom taxonomies and comments
  • Deals with Word-style quotes and other non-standard characters using WordPress’ built-in mechanism (same one that normalizes your input when you write your posts)
  • Columns in the CSV file can be in any order, provided that they have correct headings
  • Multi-language support

Drag & Drop to Import any CSV/Excel/XML with WP All Import Pro

WP All Import Pro can import custom fields, taxonomies, WooCommerce, images and galleries, users, ACF, and everything else:

  • Drag & Drop to Import Any File: Give any CSV or XML to WP All Import, then drag and drop to map data from your file into WordPress.
  • Any Custom Post Type, Every Data Type: Import data to custom post types, with support for WooCommerce, ACF, custom fields, taxonomies, and everything else.
  • Import Images & Galleries: Images can be uploaded, downloaded, or matched to media already in WordPress. Full support for WooCommerce product images and variation galleries.
  • Import Files from URL: Download and import files from external websites, even if they are password protected. URL imports are can be re-run to add, edit, and delete posts.
  • Scheduled Imports: WP All Import Pro can check periodically check a file for updates and then add, update, or delete to the imported posts accordingly.
  • Developer Friendly: Pass data through custom PHP functions. For example, use something like [my_function( {user_email[1]} )] in your template, to pass the value of {user_email[1]} to my_function and display whatever it returns.
  • Priority Support: Personal support from our team of expert developers with over a decade of experience importing and exporting WordPress data.
  • 90 Day Money Back Guarantee: Not 100% happy? Let us know, and we’ll promptly send you a refund. No questions asked.

Check out WP All Import today.

Usage

Click on the CSV Importer link on your WordPress admin page, choose the file you would like to import and click Import. The examples directory inside the plugin’s directory contains several files that demonstrate how to use the plugin. The best way to get started is to import one of these files and look at the results.

CSV is a tabular format that consists of rows and columns. Each row in a CSV file represents a post; each column identifies a piece of information that comprises a post.

Basic post information

  • csv_post_title – title of the post
  • csv_post_post – body of the post
  • csv_post_type – post, page or a custom post type.
    New in version 0.3.2
    In prior versions, importing rows as pages could be specified on a per-file basis using the plugins UI. In 0.3.2, csv_post_type column was added to support custom post types as well.
    Refer to the WordPress documentation on custom post types for more info on how to set up custom post types.
  • csv_post_excerpt – post excerpt
  • csv_post_categories – a comma separated list of category names or ids.
    New in version 0.3.5
    It’s also possible to assign posts to non-existing subcategories, using > to denote category relationships, e.g. Animalia > Chordata > Mammalia. If any of the categories in the chain does not exist, the plugin will automatically create it. It’s also possible to specify the parent category using an id, as in 42 > Primates > Callitrichidae, where 42 is an existing category id.
  • csv_post_tags – a comma separated list of tags.
  • csv_post_date – about any English textual description of a date and time.
    For example, now, 11/16/2009 0:00, 1999-12-31 23:55:00, +1 week, next Thursday, last year are all valid descriptions. For technical details, consult PHP’s strtotime() function documentation.

Custom fields

Any column that doesn’t start with csv_ is considered to be a custom field name. The data in that column will be imported as the custom fields value.

General remarks

  • WordPress pages don’t have categories or tags.
  • Most columns are optional. Either csv_post_title, csv_post_post or csv_post_excerpt are sufficient to create a post. If all of these columns are empty in a row, the plugin will skip that row.
  • The plugin will attempt to reuse existing categories or tags; if an existing category or tag cannot be found, the plugin will create it.
  • To specify a category that has a greater than sign (>) in the name, use the HTML entity >

Advanced usage

  • csv_post_author – numeric user id or login name. If not specified or user does not exist, the plugin will assign the posts to the user performing the import.
  • csv_post_slug – post slug used in permalinks.
  • csv_post_parent – post parent id.

Custom taxonomies

New in version 0.3.0

Once custom taxonomies are set up in your theme’s functions.php file or by using a 3rd party plugin, csv_ctax_(taxonomy name) columns can be used to assign imported data to the taxonomies.

Non-hierarchical taxonomies

The syntax for non-hierarchical taxonomies is straightforward and is essentially the same as the csv_post_tags syntax.

Hierarchical taxonomies

The syntax for hierarchical taxonomies is more complicated. Each hierarchical taxonomy field is a tiny two-column CSV file, where the order of columns matters. The first column contains the name of the parent term and the second column contains the name of the child term. Top level terms have to be preceded either by an empty string or a 0 (zero).

Sample examples/custom-taxonomies.csv file included with the plugin illustrates custom taxonomy support. To see how it works, make sure to set up custom taxonomies from functions.inc.php.

Make sure that the quotation marks used as text delimiters in csv_ctax_ columns are regular ASCII double quotes, not typographical quotes like “ (U+201C) and ” (U+201D).

Comments

New in version 0.3.1

An example file with comments is included in the examples directory. In short, comments can be imported along with posts by specifying columns such as csv_comment_*_author, csv_comment_*_content etc, where * is a comment ID number. This ID doesn’t go into WordPress. It is only there to have the connection information in the CSV file.

Credits

This plugin uses php-csv-parser by Kazuyoshi Tlacaelel. It was inspired by JayBlogger’s CSV Import plugin.

Contributors:

  • Denis Kobozev (original author)
  • Kevin Hagerty (post_author support)
  • Edir Pedro (root category option and tableless HTML markup)
  • Frank Loeffler (comments support)
  • Micah Gates (subcategory syntax)
  • David Hollander (deprecation warnings, linebreak handling)

Installation

Installing the plugin:

  1. Unzip the plugin’s directory into wp-content/plugins.
  2. Activate the plugin through the ‘Plugins’ menu in WordPress.
  3. The plugin will be available under Tools -> CSV Importer on WordPress administration page.

Frequently asked questions

Sets max execution time to 2 minutes. Adjust as necessary.

php_value max_execution_time 120 The problem can be approached from another angle, namely instead of giving scripts more time to run making them run faster. There’s not much I can do to speed up the plugin (you can contact me at dvkobozev at gmail.com if you like to prove me wrong), so you can try to speed up WordPress. It is a pretty broad topic, ranging from database optimizations to PHP accelerators such as APC, eAccelerator or XCache, so I’m afraid you’re on your own here. I receive the following error when I try to import my CSV file: “Invalid CSV file: header length and/or row lengths…

Changelog

Minor ui update

0.4.2

  • Minor ui update

0.3.9

  • Minor bug and security fixes

0.3.8

  • Minor bug and security fixes

0.3.7

  • Make hierarchical custom taxonomy line splitting more robust
  • Fix deprecation warnings

0.3.6

  • Fix category cleanup bug

0.3.5

  • Added ‘greater-than’ category syntax
  • Updated the docs

Full changelog on WordPress.org →

Screenshots

Plugin interface
Plugin interface

For developers

Is this your plugin? Show off the numbers.

Add a live badge to your site, docs or GitHub README. It updates on its own — no account needed.

Active installs badge Rating badge Health score badge

Best CSV Importer alternatives

All csv plugins →
Alternatives
Rank Plugin Active installs Rating Updated Health
1 TablePress – Tables in WordPress made easy TablePress – Tables in WordPress made easy Embed beautiful, accessible, and interactive tables into your WordPress website’s posts and… by Tobias Bäthge 600K+ ★★★★★★★★★★ 5 (4.6K) 1 month ago 90
2 WP All Import – Drag & Drop Import for CSV, XML, Excel & Google Sheets WP All Import Easily import any file of any size into any plugin, post type, custom field, or taxonomy… by WP All Import 100K+ ★★★★★★★★★★ 4.7 (2K) 2 months ago 86
3 Import and export users and customers Import and export users and customers Bulk import and export WordPress users and WooCommerce customers from CSV, including roles… by Javier Carazo 70K+ ★★★★★★★★★★ 4.7 (258) 6 days ago 92
4 wpDataTables – WordPress Data Table, Dynamic Tables & Table Charts Plugin wpDataTables The best WordPress table plugin. Create responsive, and searchable tables and charts from… by Melograno Venture Studio 60K+ ★★★★★★★★★★ 4.5 (449) 2 weeks ago 93
5 Export All URLs Export All URLs Export post, page and custom post type data to CSV or JSON, and snapshot your site to… by Atlas Gondal 50K+ ★★★★★★★★★★ 4.6 (94) 3 months ago 74
6 WP Import Export Lite WP Import Export Lite Complete Import & Export solution for Posts, Pages, Custom Posts, Users, Taxonomies… by vjinfotech 40K+ ★★★★★★★★★★ 4 (113) 2 weeks ago 75
7 Really Simple CSV Importer Really Simple CSV Importer Alternative CSV Importer plugin. Simple and powerful, best for geeks. by Webの相談所 40K+ ★★★★★★★★★★ 4.9 (107) 2 months ago 86
8 Import Users from CSV Import Users from CSV Import users from a CSV into WordPress by WP All Import 10K+ ★★★★★★★★★★ 4.1 (44) 2 months ago 77
9 Export Media URLs Export Media URLs Extract every Media Library URL with title, size, dimensions, alt text and more. Filter by… by Atlas Gondal 8K+ ★★★★★★★★★★ 5 (29) 1 month ago 89
10 Get Use APIs – JSON Content Importer Get Use APIs – JSON Content Importer Connects an API to WordPress: Get API-data (JSON, XML, CSV...), show it with a Shortcode, a… by berkux 5K+ ★★★★★★★★★★ 4.9 (78) 3 weeks ago 93

FAQ

CSV Importer: quick answers

Straight answers, pulled from live WordPress.org data.

Live data from WordPress.org · checked Sep 26, 2026

Is CSV Importer free?

Yes. CSV Importer is free to download and use from the official WordPress.org plugin directory.

Is CSV Importer safe to use in 2026?

CSV Importer is a solid plugin choice in 2026, with a few things worth checking first. It runs on 3K+ sites, is rated 4.2/5 and was last updated 2 months ago, and scores 79/100 on our health check.

How many websites use CSV Importer?

CSV Importer is active on 3K+ WordPress websites and has been downloaded 221,779 times since it launched in March 2009. It was downloaded 552 times in the last 30 days.

Does CSV Importer work with WordPress 7.1?

CSV Importer is officially tested up to WordPress 7.0.6, while the latest release is 7.1.2. It may still work, but try it on a staging site first.

What PHP version does CSV Importer need?

CSV Importer requires PHP 7.0 or higher. Most hosts run PHP 8.x today, so it works on any modern WordPress hosting.

When was CSV Importer last updated?

The latest version, 0.4.2, was released on July 30, 2026 (2 months ago).

Who makes CSV Importer?

CSV Importer is developed and maintained by Soflyy.

What are the best alternatives to CSV Importer?

The most popular alternatives to CSV Importer are TablePress (600K+ installs), WP All Import (100K+ installs) and Import and export users and… (70K+ installs).

Powered by PageForge

Want thousands of pages that rank like these? Build them in an afternoon.

This directory runs on the same engine as PageForge. Turn any spreadsheet, CSV or API into thousands of fast, SEO-ready WordPress pages — with schema, internal links and AI-written copy baked in.

  • CSV, Google Sheets & API data sources
  • AI content, schema & internal links per page
  • Works with Elementor, Gutenberg, Yoast & Rank Math
  • Free on WordPress.org — no credit card
Sarah is here to help!
Hi there! 👋 Need help finding what you're looking for?
Sarah
Sarah
Online & Ready to Help
Hi there! 👋 Need help finding what you're looking for?

We'll use this to continue our conversation

Just now ✓ Verified

Join 500+ SEO Pros Scaling Their Strategy

Get exclusive programmatic SEO tactics, AI content workflows, and the latest PageForge updates delivered straight to your inbox. Stay ahead of the algorithm.

We care about your data in our privacy policy.