phpcms列表页怎么调用点击率

2024-11-17 10:35:43
推荐回答(3个)
回答(1):

首先:需要在list.html 模板中首先加载jquery.min.js 这个js例如:具体视各位版本以及js存放路径而定 //具体视各位版本以及js存放路径而定其次:需要在:【点击:】 后面增加如下代码:

回答(2):

很多朋友经常问Phpcms v9的首页、列表页、内容页点击量如何调用。现在就给大家分享phpcms V9如何分别在首页、列表页、内容页调用点击量代码:
1,Phpcms v9首页调用点击量
{pc:content action="lists" catid="$r[catid]" num="5" order="id DESC" return="info"}
  {php $categorys = getcache('category_content_'.$siteid,'commons');}
  


      {loop $info $v}
      {php $category = $categorys[$v[catid]];}
      {php $modelid = $category['modelid'];}
      {php $db = pc_base::load_model('hits_model'); $_r = $db->get_one(array('hitsid'=>'c-'.$modelid.'-'.$v[id])); $views = $_r[views]; }
      {php $comment_tag = pc_base::load_app_class("comment_tag", "comment"); $comment_total = $comment_tag->count(array('commentid'=>'content_'.$v[catid].'-'.$v[id].'-'.$modelid));}
      
  • ·{str_cut($v['title'],40)} 点击:{$views} 评论:{if $comment_total}{$comment_total}{else}0{/if}

  •   {/loop}
      

  {/pc}
2,Phpcms v9列表页调取点击量
{php $db = pc_base::load_model(‘hits_model’); $_r = $db->get_one(array(‘hitsid’=>’c-’.$modelid.’-’.$r[id])); $views = $_r[views]; }
点击:{$views}
3, Phpcms v9内容页调取点击量

  

回答(3):

具体方法:首先:需要在list.html 模板中首先加载jquery.min.js 这个js例如:具体视各位版本以及js存放路径而定 //具体视各位版本以及js存放路径而定其次:需要在:【点击:】 后面增加如下代码: 这样就ok了