• 近日,有网友在微博爆料:贵州省遵义市一家装修公司,员工因未完-002cc全讯开户送白菜

  • 专注网站建设 服务热线: 13061801310

近日,有网友在微博爆料:贵州省遵义市一家装修公司,员工因未完

发布时间:2018-11-12 | 发布者:  | 浏览次数: 次

很多朋友在用phpcms做站时,具体需要在列表页、下载app送体验金26元首页调用文章列表调用文章的点击量和评论排行,那么怎么才能做到在phpcms v9下载app送体验金26元首页、频道页、列表页、推荐位等页面获取文章浏览量和评论统计呢?

原因起于phpcms官方默认的模版没有在列表页面调用过文章点击量和评论数量,而且文章的内页调用浏览量hit的方法不适用于列表页。

下面是具体的代码,分享在此,具体在列表页调用文章点击量的演示在这里:。

一、列表页面取得文章点击量及评论数量:

{pc:content action="lists" catid="$catid" num="25" order="id desc" page="$page" moreinfo="1"} {loop $data $r} {php $db = pc_base::load_model('hits_model'); $_r = $db->get_one(array('hitsid'=>'c-'.$modelid.'-'.$r[id])); $views = $_r[views]; } {php $comment_tag = pc_base::load_app_class("comment_tag", "comment"); $comment_total = $comment_tag->count(array('commentid'=>'content_'.$catid.'-'.$r[id].'-'.$modelid));}

  • {date('y-m-d h:i:s',$r[inputtime])}· 点击:{$views} 评论数:{if $comment_total}{$comment_total}{else}0{/if}
  • {/loop} {$pages} {/pc}

    二、频道页面取得文章点击量及评论数量:

    {pc:content action="lists" catid="$v[catid]" num="5" order="id desc"} {loop $data $v} {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));}

  • 点击:{$views}评论数:{if $comment_total}{$comment_total}{else}0{/if}
  • {/loop} {/pc}

    三、phpcms下载app送体验金26元首页面取得文章点击量及评论数量:

    {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));}
    • · 点击:{$views} 评论:{if $comment_total}{$comment_total}{else}0{/if}
    • {/loop}
    {/pc}

    四、phpcms推荐位取得文章点击量及评论数量:

    {pc:content action="position" posid="2" order="listorder desc" num="4"} {php $categorys = getcache('category_content_'.$siteid,'commons');} {loop $data $r} {php $category = $categorys[$r[catid]];} {php $modelid = $category['modelid'];} {php $db = pc_base::load_model('hits_model'); $_r = $db->get_one(array('hitsid'=>'c-'.$modelid.'-'.$r[id])); $views = $_r[views]; } {php $comment_tag = pc_base::load_app_class("comment_tag", "comment"); $comment_total = $comment_tag->count(array('commentid'=>'content_'.$r[catid].'-'.$r[id].'-'.$modelid));}

    点击:{$views} 评论:{if $comment_total}{$comment_total}{else}0{/if}

    {if $n==1}{/if}{str_cut($r[description],112)}


    {/loop} {/pc}

    enjoy it!

    20130228更新:

    要多谢来自qq上的网友huang,他在看了上面的说明后,觉得在统计页面还需要加上统计的js,这是对的。需要在show.html、show_picture.html等模板文件底部加入以下代码:

    这是官方默认模版里边自带的,别忘了加上这个!

    转载请标注:——

    网站地图