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.
我有一个包含 2000 个帖子的 wordpress 博客。每个帖子的名称是一个人的名字。但是名字和姓氏用'-'分隔,我想自动化从帖子名称中删除这些'-'的过程。
例子 -
Present name of a post: Isaac-Newton Desired name : Isaac Newton
是否有任何脚本或代码来执行此操作,因为这将是一项繁琐的工作,如果我必须手动编辑所有帖子的名称。任何帮助,建议什么可能有效?
您可以在 PhpMyadmin 中打开 WP 数据库并运行如下内容:
update wp_posts set post_title = replace(post_title, "-", " ") WHERE post_title LIKE '%-%';
显然首先备份数据库,以确保您不会完全搞砸它。