找到app/accountajax.php
if ($topics_list = $this->model('topic')->get_topic_list(null, 'RAND()', 8))
替换为
$where = "topic_id IN(1,2,3,4)";
if ($topics_list = $this->model('topic')->get_topic_list($where, 'topic_id DESC', 8))
1,2,3,4改成你想调用的话题id
阅读全文
收起全文