使用WordPress和WooCommerce,我试图删除所有"发布内容"来自"产品" woocommerce。
产品属于自定义帖子类型"产品"我不想删除博客文章或网页上的帖子内容。
谢谢
答案 0 :(得分:2)
我没有WooCommerce的经验,但查询将是:
UPDATE `wp_posts`
SET `post_content` = ''
WHERE `post_type` = 'product'
将product
替换为实际的post_type WooCommerce注册产品。如果您不知道插件文件中的register_post_type()的post_type搜索(grep,在路径中查找,...)。如果您不知道如何操作,请运行以下查询:
SELECT `post_type`
FROM `wp_posts`
WHERE `post_type` NOT IN ('post','page','attachment','revision','nav_menu_item')
您将获得所有自定义注册帖子类型的列表。