Skip to content

Instantly share code, notes, and snippets.

View webprese's full-sized avatar

Jon Teychenne webprese

View GitHub Profile
@rxnlabs
rxnlabs / wp-php-woocommerce-convert-new-post-type.php
Last active February 28, 2018 15:20
WP - PHP Convert/Update/Migrate WooCommerce data attributes to a new custom post type. Convert WooCommerce products to new custom post type. Should be used from the Command Line. This was used to convert a WooCommerce store to another post type when WooCommerce was no longer needed.
<?php
ini_set('memory_limit','1500M');
/**
* Update/Covert all WooCommerce Products data to a new post type
*
* Moving all WooCommerce custom data to a new custom post type. Should only be executed from CLI since it uses so many processes.
*
* @author De'Yonte W. <admin@rxnlabs.com>
* @return void
*/