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

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

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

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

批量替换门户文章标题:

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

WEEX交易所已上线平台币 WEEX Token (WXT)。WXT 作为 WEEX 交易所生态系统的基石,主要用于激励 WEEX 交易平台社区的合作伙伴、贡献者、先驱和活跃成员。

新用户注册 WEEX 账户、参与交易挖矿及平台其他活动,均可免费获得 WXT 空投奖励。

点此注册 WEEX 账户,即刻领取 1,600 WXT 新用户专属空投

批量替换门户文章内容:

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.net/</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批量操作前,不要忘记进行网站数据库备份。

本站资源均来源于网络或网友投稿,部分资源未经测试,难免存在BUG,所有资源只限于学习研究,不得商用。如使用本站下载的资源造成任何损失或发生侵权行为,均与本站无关。如不接受本声明请勿下载!本站资源如有侵权,请联系QQ:497149677核实后立即删除!
最客资源网 » Discuz 批量替换/修改门户文章标题、内容