有没有办法从数据库中删除该类别?
我只是将我的旧wordpress博客(在url中有类别)移动到新域(没有类别)。
我改变了一切,除了类别。甚至我都不知道它存储在数据库中的什么位置:(
更新
Problem is resolved, I added the answer below so that it will help to others.
最合适的回答,由SO网友:jogesh_pi 整理而成
通过以下查询完成:
delete from `wp_terms` where `term_id` in ( SELECT `term_id`
FROM `wp_term_taxonomy`
WHERE `taxonomy` = \'category\' ) and `term_id` not like 1
此查询删除了除默认类别以外的所有类别。希望这对其他人有所帮助。