https://github.com/pods-framework/pods-convert
Pods Convert is a plugin to convert a Pod type or Storage type to another.
https://github.com/pods-framework/pods-convert
converter pods pods-addon wordpress-plugin
Last synced: about 2 months ago
JSON representation
Pods Convert is a plugin to convert a Pod type or Storage type to another.
- Host: GitHub
- URL: https://github.com/pods-framework/pods-convert
- Owner: pods-framework
- License: gpl-2.0
- Created: 2013-12-16T13:52:26.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-08-02T22:49:10.000Z (almost 9 years ago)
- Last Synced: 2025-04-08T19:52:41.768Z (3 months ago)
- Topics: converter, pods, pods-addon, wordpress-plugin
- Language: PHP
- Homepage:
- Size: 473 KB
- Stars: 10
- Watchers: 13
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: readme.txt
- License: license.txt
Awesome Lists containing this project
README
=== 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.htmlPods 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 pluginOR 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