有一个名为Top Posts and Pages (Jetpack)
如果您查看此小部件的[源代码][2],您可以看到它正在使用该函数stats_get_csv()
要检索统计信息,请执行以下操作:
$post_view_posts = stats_get_csv( \'postviews\', array( \'days\' => 2, \'limit\' => 10 ) );
如果要生成自定义的最受欢迎列表,可以使用以下示例:
if(function_exists(\'stats_get_csv\')){
$popular = stats_get_csv( \'postviews\', array( \'days\' => 2, \'limit\' => 10 ) );
echo \'<ol>\';
foreach ( $popular as $p ) {
printf(\'<li><a href="%s">%s</a>(%d)</li>\', $p[\'post_permalink\'], $p[\'post_title\'], $p[\'views\'] );
}
echo \'</ol>\';
}
功能
stats_get_csv( $table, $args = null )
定义于:
http://plugins.trac.wordpress.org/browser/jetpack/tags/2.2.6/modules/stats.php
从何处提取数据
http://stats.wordpress.com/csv.php
请注意
stats_get_csv
正在缓存数据5分钟。
例如stats_get_csv
输出和API描述,请查看this great answer.