你找到/twcms/model/cms_content_model.class.php
将这一行$v['pic'] = $this->cfg['webdir'].(empty($v['pic']) ? 'static/img/nopic.gif' : $v['pic']);
改为$v['pic'] = $this->cfg['webdir'].(empty($v['pic']) ? 'static/img/'.rand(1,10).'.jpg' : $v['pic']);
然后把你的随即图片,放到static/img目录,图片名称从1.jpg一直到10.jpg,这样即可实现随机图片。