WordPress: How can i convert all post from sport c

2019-09-21 11:10发布

How can convert all posts that in category sport into news category by using SQL statement, Because i have more than 2000 posts

1条回答
forever°为你锁心
2楼-- · 2019-09-21 11:42

This should work*,

UPDATE wp_term_relationships SET term_taxonomy_id = '3' WHERE term_taxonomy_id = '1';

Where 1 is the id of the News category and 3 is the id of the Sports category

*You should back up your tables before making this change just in case something goes wrong.

查看更多
登录 后发表回答