-
Notifications
You must be signed in to change notification settings - Fork 3
/
readme.txt
49 lines (34 loc) · 1.97 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
=== Pods Convert ===
Contributors: sc0ttkclark, pglewis
Donate link: http://podsfoundation.org/donate/
Tags: pods, storage type, migrate, storage type, convert
Requires at least: 4.2
Tested up to: 4.6
Stable tag: 0.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Pods Convert is a plugin to convert a Pod type or Storage type to another.
== Description ==
Requires WP-CLI and access to the command line.
Run `wp pods-convert migrate --pod=your_pod`
Additional options can be:
* Change the pod type: `--new_type=post_type` (For example, when it was an Advanced Content Type "pod" before)
* Change the storage type: `--new_storage=meta` (For example, when it was Table-based storage "table" before)
* Change the pod name used for new pod: `--new_name=my_new_pod` (This will bypass the attempt to create a temporary pod / delete the old one, you will end up with two different pods which are identical and have the same content)
* Additional fields mapping: Coming soon
* Verbose logging in terminal: `--verbose`
* Currently only supports (and is tested against) Advanced Content Types converting to other pod types
`wp pods-convert migrate --pod=your_act --new_type=post_type --new_storage=meta --new_name=your_cpt`
The migration will create a temporary pod from the pod, migrate all items from that pod 100 at a time, then attempt to delete the pod and rename the temporary pod back to the original pod name.
== Future features ==
* Additional fields mapping (change which fields map to which fields)
* Convert from other content types to Advanced Content Types
== Installation ==
1. Unpack the entire contents of this plugin zip file into your `wp-content/plugins/` folder locally
1. Upload to your site
1. Navigate to `wp-admin/plugins.php` on your site (your WP Admin plugin page)
1. Activate this plugin
OR you can just install it with WordPress by going to Plugins >> Add New >> and type this plugin's name
== Changelog ==
= 0.1 - July 14th, 2015 =
* First release