Home > Database > Mysql Tutorial > 批量替换wordpress文章内容

批量替换wordpress文章内容

WBOY
Release: 2016-06-07 16:33:26
Original
1002 people have browsed it

对于mysql用户来说,其实这个问题很简单,但一般wordpress用户不一定得懂mysql。 通过idc的后台mysql管理来进行修改,一般使用工具为phpmyadmin 注意:操作前一定要进行备份 打开wordpress所用数据库,点击SQL菜单,执行以下sql语句: UPDATE `wp_posts` SET

对于mysql用户来说,其实这个问题很简单,但一般wordpress用户不一定得懂mysql。

通过idc的后台mysql管理来进行修改,一般使用工具为phpmyadmin

注意:操作前一定要进行备份

打开wordpress所用数据库,点击SQL菜单,执行以下sql语句:

UPDATE `wp_posts` SET `post_content` = replace( `post_content` , 'old', 'new');
Copy after login

wp_posts:wordrepss文章内容表

post_content:文章内容列

replace():执行替换功能

old:需要替换的内容

new:替换为新内容

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template