1、安装WP-PostViews插件,启用,设置PostViews,
其他不动:
Views Template:浏览数:%VIEW_COUNT%
2、调用浏览数:
外观,编辑,文章页面 (single.php),在合适位置加入如下代码:
[code]<?php if(function_exists('the_views')) { the_views(); } ?>&nbsp;&nbsp;[/code]
3、调用排行榜:
在主题文件sidebar.php文件中的相应位位置添加代码
显示阅读次数最多的文章或页面:
[code]<?php if (function_exists('get_most_viewed')): ?>
<?php get_most_viewed(); ?>
<?php endif; ?> [/code]
只显示阅读次数最多的文章:
[code]<?php if (function_exists('get_most_viewed')): ?>
<?php get_most_viewed('post'); ?>
<?php endif; ?> [/code]
只想显示10篇阅读次数最多的文章:
[code]<?php if (function_exists('get_most_viewed')): ?>
<?php get_most_viewed('post',10); ?>
<?php endif; ?> [/code]
在get_most_viewed 函数中的参数10决定要显示的篇数
显示显示某类别下的阅读次数最多的文章:
[code]<?php if (function_exists('get_most_viewed_category')): ?>
<?php get_most_viewed_category(the_catagory_ID(false)); ?>
<?php endif; ?> [/code]
在get_most_viewed_category函数类别ID决定显示的分类
评论前必须登录!
注册