Heim >Datenbank >MySQL-Tutorial >批量替换wordpress文章内容

批量替换wordpress文章内容

WBOY
WBOYOriginal
2016-06-07 16:33:26999Durchsuche

对于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');

wp_posts:wordrepss文章内容表

post_content:文章内容列

replace():执行替换功能

old:需要替换的内容

new:替换为新内容

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:lnmp使用实例Nächster Artikel:MySql索引要注意的8个事情