Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试更改 Wordpress 中多个帖子的作者姓名。我更喜欢使用 SQL 查询而不是 Wordpress 插件。有没有办法在 SQL 中选择多个 ID 并更新?我想获取我想更改的所有帖子 ID 的列表并批量编辑作者姓名。
如果您愿意,可以从后端无需插件即可执行此操作。
只需选择您要更改作者的帖子,然后单击“批量编辑”,您就会看到该选项(您也可以同时查看任意数量的帖子;您不限于您最初看到的 25 多个帖子)。
不知道如何在 SQL 中做到这一点,但这就是我的做法。
// 从 wp_users 表中选择正确的 post_author ID
UPDATE wp_posts SET post_author=1 WHERE ID IN (ID1,ID2,...)