Discuz 批量替换/修改门户文章标题、内容
我们做论坛网站时,如果网站中需要替换或修改多个文章,就需要使用SQL批量操作。以前我们讲过DZ论坛批量修改已发布贴子内容,今天再来讲一下,Discuz 如何批量修改门户文章标题及内容。
Discuz 批量替换/修改门户文章标题、内容 SQL命令:
批量替换门户文章标题:
WEEX交易所已上线平台币 WEEX Token (WXT)。WXT 作为 WEEX 交易所生态系统的基石,主要用于激励 WEEX 交易平台社区的合作伙伴、贡献者、先驱和活跃成员。
新用户注册 WEEX 账户、参与交易挖矿及平台其他活动,均可免费获得 WXT 空投奖励。
批量替换门户文章内容:
批量替换论坛贴子标题:
批量替换论坛贴子内容:
举例:
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批量操作前,不要忘记进行网站数据库备份。
最客资源网 » Discuz 批量替换/修改门户文章标题、内容