欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

Disucz修改帖子查看数的方法·····刷新一次增加为N

程序员文章站 2022-05-10 20:06:20
...
打开:在source\module\forum下,forum_viewthread.php打开,找到
  1. C::t('forum_thread')->increase($_G['tid'], array('views' => $row['addviews']+1), true);
  2. discuz_process::unlock('update_thread_view');
  3. }
  4. }
  5. } else {
  6. C::t('forum_threadaddviews')->insert(array('tid' => $_G['tid'], 'addviews' => 1), false, true);
  7. }
  8. } else {
  9. C::t('forum_thread')->increase($_G['tid'], array('views' =>1), true, $tableid);
复制代码
把上面代码里面的 3处 1 改成N(你想要的数值)

例如:
  1. C::t('forum_thread')->increase($_G['tid'], array('views' => $row['addviews']+3), true);
  2. discuz_process::unlock('update_thread_view');
  3. }
  4. }
  5. } else {
  6. C::t('forum_threadaddviews')->insert(array('tid' => $_G['tid'], 'addviews' => 3), false, true);
  7. }
  8. } else {
  9. C::t('forum_thread')->increase($_G['tid'], array('views' =>3), true, $tableid);
复制代码