记录批量删除WordPress指定分类中的内容

我们有很多朋友在做网站的时候,给WordPress添加了很多采集内容,但是后续又不希望用到。那我们就需要删除,这里如何删除指定分类的内容呢?

删除指定分类中的文章

delete
from
wp_posts
using
wp_posts,
wp_term_relationships,
wp_term_taxonomy
where
wp_posts.id = wp_term_relationships.object_id
and
wp_term_relationships.term_taxonomy_id = wp_term_taxonomy.term_taxonomy_id
and
wp_term_relationships.term_taxonomy_id = 18(分类ID)

删除分类

delete FROM `wp_term_relationships` where term_taxonomy_id = 18(分类ID)
投上你的一票

原创文章,转载请注明出处:https://www.itbulu.com/bulkdellist.html

上一篇 2024年12月13日 09:44
下一篇 2025年1月7日 14:30