重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
默认postviews插件似乎没有这样的选项。我觉得应该是第三方插件或者主题自带这样的功能选项,你再找找有没有别的地方会有这样的设置,是不是漏了个k。或者你把页面的调用postviews插件的地方发来瞧瞧。
10年积累的成都网站设计、网站建设经验,可以快速应对客户对网站的新想法和需求。提供各种问题对应的解决方案。让选择我们的客户得到更好、更有力的网络服务。我虽然不认识你,你也不认识我。但先网站设计后付款的网站建设流程,更有灵石免费网站建设让你可以放心的选择与我们合作。
如你所要求的,本月/本周 浏览次数最多的6篇文章,最好使用的Wordpress Popular Posts插件。
WP-POSTVIEWS茂似也可以,但修改插件或代码,新版本的WP-PostViews不带某个函数调用了,还挺麻烦的,而且效果没Wordpress Popular Posts好,所以建议用Wordpress Popular Posts插件来调用是最好!
为啥那么说,因为Wordpress Popular Posts插件也可以显示文章浏览次数。
它不仅可以本月/本周浏览次数最多的某几篇文章,而且可以当天或者所有时间里的浏览次数最多的文章,或按评论次数来显示。
可以看u142.com/author/xiaofan这个页面,就是利用这个插件做的。
我贴出来那部分调用的代码,具体如何调用,插件后台有写说明的。
!--排行榜--
div id="top10"
div class="top10_menu"
h3作者热门文章排行榜/h3
label
span class="top10 selected" id="week"本周/span
span class="top10" id="month"本月/span
span class="top10" id="all"经典/span
/label
/div
div id="listweek" class="ol"
?php if (function_exists('wpp_get_mostpopular')) {
$ppargs=array(
'range' = 'weekly',
'order_by' = 'views',
'post_type' = 'post',
'author' = $current_author_id,
'stats_comments' = 0,
'stats_views' = 1,
'wpp_start' = 'ol',
'wpp_end' = '/ol',
'post_start' = 'li',
'post_end' = '/li',
);
wpp_get_mostpopular($ppargs);
}
?
/div
div style="display: none; " id="listmonth" class="ol"
?php if (function_exists('wpp_get_mostpopular')) {
$ppargs=array(
'range' = 'monthly',
'order_by' = 'views',
'post_type' = 'post',
'author' = $current_author_id,
'stats_comments' = 0,
'stats_views' = 1,
'wpp_start' = 'ol',
'wpp_end' = '/ol',
'post_start' = 'li',
'post_end' = '/li',
);
wpp_get_mostpopular($ppargs);
}
?
/div
div style="display: none; " id="listall" class="ol"
?php if (function_exists('wpp_get_mostpopular')) {
$ppargs=array(
'range' = 'all',
'order_by' = 'views',
'post_type' = 'post',
'author' = $current_author_id,
'stats_comments' = 0,
'stats_views' = 1,
'wpp_start' = 'ol',
'wpp_end' = '/ol',
'post_start' = 'li',
'post_end' = '/li',
);
wpp_get_mostpopular($ppargs);
}
?
/div
/div
!--排行榜END--
以上个人观点,仅供参考
把下面这段代码加在想显示文章浏览次数的位置(例如模板内的content.php)
?php setPostViews(get_the_ID()); echo getPostViews(get_the_ID()); ?
如果需要在列表页显示查看次数,那么建议在列表页需要显示查看次数的位置单独添加下面的代码
?php echo getPostViews(get_the_ID()); ?
把下面这段代码加在模板文件夹内的functions.php文件内
//统计文章浏览次数
function getPostViews($postID){
$count_key = 'post_views_count';
$count = get_post_meta($postID, $count_key, true);
if($count==''){
delete_post_meta($postID, $count_key);
add_post_meta($postID, $count_key, '0');
return "0 查看";
}
return $count.' 查看';
}
function setPostViews($postID) {
$count_key = 'post_views_count';
$count = get_post_meta($postID, $count_key, true);
if($count==''){
$count = 0;
delete_post_meta($postID, $count_key);
add_post_meta($postID, $count_key, '0');
}else{
$count++;
update_post_meta($postID, $count_key, $count);
}
}
有用记得采纳哦!
查看访问量,这个你需要添加相关的统计代码,如:CNZZ,51la,yahoo统计,谷歌统计就可以,方法也很简单:
1、在这些统计站点,申请个帐户,然后取得代码
2、找到目录文件夹/wp-content/themes/使用的主题文件目录,打开footer.php ,在合适的位置加上这段统计代码,保存,就OK了