admin管理员组

文章数量:1316974

I have a auto feed website and there are too many unsueful tags that have just one or two post. Is there any sql code to clear all of these tags from database at once?!

I have a auto feed website and there are too many unsueful tags that have just one or two post. Is there any sql code to clear all of these tags from database at once?!

Share Improve this question asked Nov 8, 2020 at 13:02 m.javad koushkim.javad koushki 54 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

I found the sql code and It works fine. I just change 0 to 1

DELETE FROM wp_terms WHERE term_id IN (SELECT term_id FROM wp_term_taxonomy WHERE count = 0 );

本文标签: How remove tags just have one post