pinghsu主题全文默认缩略图改为随机图

主题目录下的index.php需要修改四处地方:

1
2
3
4
5
6
7
8
9
10
11
12

style="background-image:url(<?php parseFieldsThumb($this);?>);"></div>
有两处需要修改为以下
------->
style="background-image:url(<?php $this->options->themeUrl('images/thumbs/'.mt_rand(0,9).'.jpg'); ?>);"></div>



style="background-image:url(<?php echo $thumb;?>);"></div>
有两处需要修改为以下
------->
style="background-image:url(<?php $this->options->themeUrl('images/thumbs/'.mt_rand(0,9).'.jpg'); ?>);"></div>


----------- 本文结束 -----------




如果你觉得我的文章对你有帮助,你可以打赏我哦~
0%