很多朋友都在使用wordpress做网站,同时也会采集一些数据,如果你采集过来的数据发生问题,我们想删除某个分类下的文章,如果几千篇文章在后台手工删除是非常慢的,今天分享一个直接在数据库中删除的方法,需要注意的一点数,确定你的数据表前缀是”wp_”,另外记得在执行前一定要备份,一定要备份,因为你不知道什么时候会出错。
SQL如下
删除指定分类的文章
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 = 18(分类ID)
|
删除分类
1
|
delete FROM `wp_term_relationships` where term_taxonomy_id = 18(分类ID)
|
未经允许不得转载:吾爱主机之家 » WordPress如何批量删除指定分类目录下的所有文章