Discuz 批量替换/修改门户文章标题、内容

2018-11-02    来源:学做网站论坛

容器云强势上线!快速搭建集群,上万Linux镜像随意使用

我们做论坛网站时,如果网站中需要替换或修改多个文章,就需要使用SQL批量操作。以前我们讲过DZ论坛批量修改已发布贴子内容,今天再来讲一下,Discuz 如何批量修改门户文章标题及内容。

dz

Discuz 批量替换/修改门户文章标题、内容?SQL命令:

批量替换门户文章标题:

UPDATE pre_portal_article_content SET content=REPLACE(subject,'替换前','替换后');

批量替换门户文章内容:

UPDATE pre_portal_article_content SET content=REPLACE(content,'替换前','替换后');

批量替换论坛贴子标题:

UPDATE pre_forum_thread SET subject=REPLACE(subject,'替换前,'替换后');

批量替换论坛贴子内容:

UPDATE pre_forum_post SET message=REPLACE(message,'替换前','替换后');

举例:

UPDATE pre_portal_article_content SET content=REPLACE(content,'<div><embed','<div><embed tt');
UPDATE pre_portal_article_content SET content=REPLACE(content,'height="500">','height="tt500">');

UPDATE pre_portal_article_content SET content=REPLACE(content,'<embed src=','<div><embed src=');
UPDATE pre_portal_article_content SET content=REPLACE(content,'height="500">','height="500"></div><div>学做网站论坛https://www.xuewangzhan.com/</div>');

UPDATE pre_portal_article_content SET content=REPLACE(content,'<div><embed tt','<div><embed');
UPDATE pre_portal_article_content SET content=REPLACE(content,'height="tt500">','height="500">');

提醒:在进行SQL批量操作前,不要忘记进行网站数据库备份。更多DISCUZ批量操作方法,请参考DISCUZ论坛常用批量修改SQL语句汇总。

标签: 数据库

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:discuz如何设置门户为默认首页

下一篇:DISCUZ如何制作网站导航的下拉菜单