我们有很多朋友在做网站的时候,给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)