织梦dedecms批量替换来源和作者的教程

如何把做好的网站中已经采集好并已生成HTML了的文章或以前已发布的文章如何快速批量替换所有“来源”和“作者”呢? 第一步: 打开:dede模板网站(后台目录)\templets\article_add.htm (发表普通模板)和article_edit.htm(修改普通模板)   分别把: <input name="source" type="text" id="source" style="width:160px" value="<?php echo $source; ?>" size="16"/> 和: <input name="writer" type="text" id="writer" style="width:120px" value="<?php echo $arcRow["writer"]?>"><input name="selwriter" type="button" id="selwriter" value="选择" />   分别改为: <input name="source" type="text" id="source" style="width:160px" value="" size="16"/>    和:   <input name="writer" type="text" id="writer" style="width:120px" value=""><input name="selwriter" type="button" id="selwriter" value="选择" />   (上面把:“”换成你自己的来源,“”换成你自己的作 者。)   第二步:登陆网站后台--模板--默认模板管理--article_article.htm(文章内容页模板)   把:   <small>时间:</small>{dede:field.pubdate function="MyDate('Y-m-dH:i',@me)"/}<small>来源:</small>{dede:field.source/} <small>作者:</small>{dede:field.writer/} <small>点击:</small><scriptsrc="{dede:field name='phpurl'/}/count.php?view=yes&aid={dede:fieldname='id'/}&mid={dede:field name='mid'/}" type='text/javascript'language="javascript"></script>次</div><!-- /info --> 改为:   <small>时间:</small>{dede:field.pubdate function="MyDate('Y-m-dH:i',@me)"/}<small>来源:</small><small>作者:</small><small>点击:</small><script src="{dede:fieldname='phpurl'/}/count.php?view=yes&aid={dede:field name='id'/}&mid={dede:field name='mid'/}" type='text/javascript'language="javascript"></script>次</div>   (上面把:“”换成你自己的来源,“”换成你自己的作者。)   然后:保存   第三步:内容维护--全选--审核   第四步:生成--一键更新网站--更新所有--开始更新   这样就全OK了,以后发布新文章时也不用再选“来源”和“作者”了。