织梦自动添加顶踩点赞默认数

 用户在浏览织梦网站时经常会受到评论、点赞数的影响而点击进去,这和浏览量有类似的作用。在利用DedeCMS做WEB开发时,不用专门开发点赞功能,可以利用自带的顶踩功能即可,如果你怕有人恶意踩造成不良影响,取消踩功能或不显示出来。下面利用顶踩功能开发点赞功能。

  

  DedeCMS默认顶踩数为零,很多时候写文章要自己顶,还有时间限制。思路是和默认的浏览量一样,产生随机数。

  如果是文章模型,找到/dede/article_add.php,大概在189行(分隔符字段去掉),找到下面代码

1
2
3
4
5
6
//保存到主表
  $query = "INSERT INTO `dede_archives`(id,typeid,typeid2,sortrank,flag,ismake,channel,arcrank,click,money,title,shorttitle,
  color,writer,source,litpic,pubdate,senddate,mid,voteid,notpost,description,keywords,filename,dutyadmin,weight)
  VALUES ('$arcID','$typeid','$typeid2','$sortrank','$flag','$ismake','$channelid','$arcrank','$click','$money',
  '$title','$shorttitle','$color','$writer','$source','$litpic','$pubdate','$senddate',
  '$adminid','$voteid','$notpost','$description','$keywords','$filename','$adminid','$weight');";

  全部替换为

1
2
3
4
5
6
7
8
/
/添加默认顶数 by zuola.net
  $goodpost = rand(50,100);//产生50到100随机数
  //保存到主表
  $query = "INSERT INTO `dede_archives`(id,typeid,typeid2,sortrank,flag,ismake,channel,arcrank,click,money,title,shorttitle,
  color,writer,source,goodpost,litpic,pubdate,senddate,mid,voteid,notpost,description,keywords,filename,dutyadmin,weight)
  VALUES ('$arcID','$typeid','$typeid2','$sortrank','$flag','$ismake','$channelid','$arcrank','$click','$money',
  '$title','$shorttitle','$color','$writer','$source','$goodpost','$litpic','$pubdate','$senddate',
  '$adminid','$voteid','$notpost','$description','$keywords','$filename','$adminid','$weight');";

 

  

如果是其他模型对应找到段,修改即可。这里只添加了顶的数量,如果想增加踩的数量,方法也是一样的,比如

  $badpost = rand(1,10); //产生1到10随机数

  在上面的代码,找到

  goodpost,

  后面增加

  badpost,

  继续找到

  '$goodpost',

  后面增加

  '$badpost',

  

前台模板调用

  {dede:arclist row='' typeid=''}

  标题:[field:title/]

  点击:[field:click/]

  赞:[field:goodpost/]

  踩:[field:badpost/]

  {/dede:arclist}