浏览统计插件WP-PostViews下载地址:
http://downloads.wordpress.org/plugin/wp-postviews.1.50.zip
» 安装步骤:
- 打开 wp-content/plugins 文件夹
- 把wp-postviews文件夹上传到wp-content/plugins
- 后台激活 WP-PostViews 插件
» 详细设计步骤,让文章内容显示统计:
1、打开 wp-content/themes/<你的风格目录>/index.php
你也可以把代码放在 archive.php, single.php, post.php 或 page.php 文件中。
2、找到代码,或与下面代码差不多的代码。
<?php while (have_posts()) : the_post(); ?>
3、把代码:
<?php if(function_exists(‘the_views’)) { the_views(); } ?>
复制到上面找到的代码的下面的哪个位置都行。
4、到后台 ‘WP-Admin -> Settings -> PostViews’ 去配置你的插件。
这样,你的网站的统计就完成了,如果你分别在index.php,archive.php, single.php, post.php, page.php文件中都添加了代码,你就可以在全站中几乎所有页面中看到统计了。
正想使用这个插件,谢谢!