wordpress批量删除某个分类下的所有文章,
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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 = 1 |
把最后的 1 改成相对应的分类id