我使用wp帖子和自定义字段在我的wordpress网站上创建了产品目录,现在我想通过Mysql将一些类别的帖子转换为woocommerce产品。只需将这些帖子复制到woocommerce - 我该怎么做?类别保持不变。
答案 0 :(得分:0)
你可以使用:Post Type Switcher http://wordpress.org/plugins/post-type-switcher/faq/或 转换帖子类型:http://wordpress.org/plugins/convert-post-types/或阅读此帖:https://wordpress.stackexchange.com/questions/127744/convert-wordpress-posts-to-products-in-woocommerce
答案 1 :(得分:0)
我用过这个:
global $wpdb;
$wpdb->update(
$wpdb->posts,
array( 'post_type' => 'product', ),
array( 'post_type' => 'post', ),
// Data Type (available: %s string, %d integer, %f float)
'%s',
// SQL "WHERE" clause Type
'%s'
);
和这个
UPDATE `wp_posts` SET `post_type` = 'product' WHERE `post_type` = 'post';