WP-PostViews
使用WP-PostViews浏览次数插件获取指定文章浏览数
星期一, 十一月 26th, 2012 | php, wordpress | 没有评论
在自己调用文章的循环中,去调用次数的时候比较范畴,最终查到获取次说的方法:
一:直接获取指定id文章的展示次数:
WP-PostViews用custom field存储展示次数,此custom field调用值为views,只要获取views的值就可以了。
方法一:loop循环调用方法:
1 2 | $post_views = intval(post_custom('views')); echo ' - '$post_views.' views'; |
方法二:根据文章的postid,获取任意文章的展示次数
1 2 | $post_views = get_post_meta($post["ID"], 'views', true); echo ' - '$post_views.' views'; |
二:顺便也记录下对应的调用函数
设置生效的前提:需要将插件提供模板标签the_views()写到模板中(index.php、single.php或者page.php等),该标签要写在循环(loop)内.
› Continue reading
Search
相关文章
热门文章
最新文章
文章分类
- ajax (10)
- algorithm-learn (3)
- Android (6)
- as (3)
- computer (85)
- Database (30)
- disucz (4)
- enterprise (1)
- erlang (2)
- flash (5)
- golang (3)
- html5 (18)
- ios (4)
- JAVA-and-J2EE (186)
- linux (143)
- mac (10)
- movie-music (11)
- pagemaker (36)
- php (50)
- spring-boot (2)
- Synology群晖 (2)
- Uncategorized (6)
- unity (1)
- webgame (15)
- wordpress (33)
- work-other (2)
- 低代码 (1)
- 体味生活 (40)
- 前端 (21)
- 大数据 (8)
- 游戏开发 (9)
- 爱上海 (19)
- 读书 (4)
- 软件 (3)