Really Simple CSV Importer - Version 0.5.4

Version Description

  • Enhancement: Check the post type is already exists.
  • Update readme
Download this release

Release Info

Developer hissy
Plugin Icon wp plugin Really Simple CSV Importer
Version 0.5.4
Comparing to
See all releases

Code changes from version 0.5.3 to 0.5.4

Files changed (2) hide show
  1. readme.txt +10 -9
  2. rs-csv-importer.php +1 -1
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: hissy, wokamoto
3
  Tags: importer, csv, acf
4
  Requires at least: 3.0
5
  Tested up to: 3.6.1
6
- Stable tag: 0.5.3
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -75,17 +75,17 @@ Yes. Please use ID field.
75
 
76
  = Can I import custom field/custom taxonomy of the post? =
77
 
78
- Yes. You can use column names same as wp_post table, but if the column name does not match, it creates a custom field (post meta) data. Importing custom taxonomy is a bit more complicated, "tax_$taxonomy" means, "tax_" is prefix, and $taxonomy is name of custom taxonomy (not labels).
79
 
80
  Here is a example.
81
 
82
- **csv file**
83
- "post_title","released","tax_actors"
84
- "Captain Phillips","2013","Tom Hanks, Barkhad Abdi, Barkhad Abdirahman"
85
 
86
- **imported post data**
87
- Post Title: Captain Phillips
88
- Custom field "released": 2013
89
  Custom taxonomy "Actors": Tom Hanks, Barkhad Abdi, Barkhad Abdirahman
90
 
91
  = Why should I quote text cells when I save csv file? =
@@ -192,8 +192,9 @@ add_filter( 'really_simple_csv_importer_save_tax', 'really_simple_csv_importer_s
192
 
193
  == Changelog ==
194
 
195
- = 0.5.3 =
196
  * Enhancement: Check the post type is already exists.
 
197
  = 0.5.2 =
198
  * New feature: Add Post Thumbnail support
199
  * Bug fixes
3
  Tags: importer, csv, acf
4
  Requires at least: 3.0
5
  Tested up to: 3.6.1
6
+ Stable tag: 0.5.4
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
75
 
76
  = Can I import custom field/custom taxonomy of the post? =
77
 
78
+ Yes. You can use column names same as wp_post table, but if the column name does not match, it creates a custom field (post meta) data. Importing custom taxonomy is a bit more complicated, "tax_{taxonomy}" means, "tax_" is prefix, and {taxonomy} is name of custom taxonomy (not labels).
79
 
80
  Here is a example.
81
 
82
+ **csv file**
83
+ "post_title","released","tax_actors"
84
+ "Captain Phillips","2013","Tom Hanks, Barkhad Abdi, Barkhad Abdirahman"
85
 
86
+ **imported post data**
87
+ Post Title: Captain Phillips
88
+ Custom field "released": 2013
89
  Custom taxonomy "Actors": Tom Hanks, Barkhad Abdi, Barkhad Abdirahman
90
 
91
  = Why should I quote text cells when I save csv file? =
192
 
193
  == Changelog ==
194
 
195
+ = 0.5.4 =
196
  * Enhancement: Check the post type is already exists.
197
+ * Update readme
198
  = 0.5.2 =
199
  * New feature: Add Post Thumbnail support
200
  * Bug fixes
rs-csv-importer.php CHANGED
@@ -7,7 +7,7 @@ Author: Takuro Hishikawa, wokamoto
7
  Author URI: https://en.digitalcube.jp/
8
  Text Domain: rs-csv-importer
9
  License: GPL version 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
10
- Version: 0.5.3
11
  */
12
 
13
  if ( !defined('WP_LOAD_IMPORTERS') )
7
  Author URI: https://en.digitalcube.jp/
8
  Text Domain: rs-csv-importer
9
  License: GPL version 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
10
+ Version: 0.5.4
11
  */
12
 
13
  if ( !defined('WP_LOAD_IMPORTERS') )