让xiuno帖子列表随机显示
2025年02月20日 51

每次进入网站或是刷新页面都会随机刷新。

演示地址

在thread_list.inc.htm 找到以下代码

 

	<?php 
					if($threadlist) { 
						$have_allowtop = 0;
						foreach($threadlist as &$_thread) {
							$_thread['allowtop'] = forum_access_mod($_thread['fid'], $gid, 'allowtop');
							if($_thread['allowtop']) $have_allowtop = 1;
						}
					}
					?>

更新为

		<?php 
					if($threadlist) { 
					shuffle($threadlist);
						$have_allowtop = 0;
						foreach($threadlist as &$_thread) {
							$_thread['allowtop'] = forum_access_mod($_thread['fid'], $gid, 'allowtop');
							if($_thread['allowtop']) $have_allowtop = 1;
						}
					}
					?>

其实就是加了一个函数

 

TAG


— THE END —




0 条评论
  • 表情
  • 游客你好,回复内容需要 登录 查看!