百度空间 | 百度首页 
 
查看文章
 
WordPress 插件:WP-PostViews
2008年05月05日 星期一 17:16

插件名称: WP-PostViews1.20

作者: Lester ‘GaMerZ’ Chan
邮件: gamerz84@hotmail.com
网站: http://www.lesterchan.net/
功能:
文章阅读数统计,实现侧边栏 Widget 以及显示最受欢迎(阅读数最多)文章、某分类下最受欢迎(阅读数最多)文章等功能

下载地址:
» WP-PostViews 1.20 For WordPress 2.3.x
» WP-PostViews 1.11 For WordPress 2.1.x And 2.2.x
» WP-PostViews 1.02 For WordPress 2.0.x

演示地址:http://www.zhouyun.net/blog

一、安装方法

  1. 将解压得到的 postviews 文件夹上传到 /wp-content/plugins 文件夹中
  2. 激活 WP-PostViews 插件,然后可以去 Options 中设置

二、使用方法

(一)一般应用

  1. 修改 /wp-content/themes/<YOUR THEME NAME>/index.php(single.php, post.php 或 page.php)
  2. 如果修改 index.php 找到:
<?php while (have_posts()) : the_post(); ?>

3.将下面的语句添加到如何需要的地方

<?php if(function_exists('the_views')) { the_views(); } ?>

(UNNAMED 主题需在theloop.php文件里查找添加)

4. 登录“WP-Admin -> Options -> Post Views”可以配置该插件
Count Views From 设置被统计的用户群
Views Template 该插件显示样式

(二)侧边栏 Widget 使用

1. 激活 “WP-PostViews Widget” 插件
2. 登录 “’WP-Admin -> Presentation -> Widgets”
3. 为了显示“Most Viewed Post(最受欢迎文章)”拖曳(Drag)“Most Viewed Widget”到侧边栏
4. 可以点击配置图标对 “Most Viewed Widget” 进行配置,然后点击“Save changes”保存

(三)调用使用

1、显示最受欢迎(阅读次数最多)文章,使用下面语句

<?php if (function_exists('get_most_viewed')): ?>
<?php get_most_viewed(); ?>
<?php endif; ?>

第一个值是你想得到的列表的类型是“文章”或“页面”或“两者都有”,如“’pos”、“page”或者“both”
第二个值是你想得到的列表的对象个数

默认的是这样的:

get_most_viewed('both', 10); //获取被阅读次数最多的10篇文章和页面

2、显示某个分类下最受欢迎(阅读次数最多)文章

<?php if (function_exists('get_most_viewed_category')): ?>
<?php get_most_viewed_category(); ?>
<?php endif; ?>

第一个值是分类目录的ID
第二个值是列表的类型“文章”或“页面”或“两者都有”,如“post”、“page”、“both’”
第三个值是列表中对象的个数

默认是这样的:

get_most_viewed_category(1, 'both', 10); //ID为1的目录下阅读最多的10篇文章和页面

四、升级方法

1. 禁用 WP-PostViews 插件
2. 上传并覆盖 /wp-content/plugins 中的 postviews 文件夹
3. 删除 postviews.php 文件
4. 激活 WP-PostViews 插件


类别:Wordpress | 添加到搜藏 | 浏览() | 评论 (2)
 
最近读者:
 
网友评论:
1
2009年04月09日 星期四 12:30 | 回复
aa
 
2
2009年04月09日 星期四 12:30 | 回复
dd
 
发表评论:
姓 名:
网址或邮箱: (选填)
内 容:
验证码: 请点击后输入四位验证码,字母不区分大小写
      

     

©2009 Baidu