我最近了解到,如果你有WordPress。com统计数据已安装,您可以利用stats_get_csv()
(部分WordPress.com Stats Plugin).
<?php if ( function_exists(\'stats_get_csv\') && $top_posts = stats_get_csv(\'postviews\', \'days=-1&limit=4\') ) : ?>
<ol>
<?php foreach ( $top_posts as $p ) : ?>
<li><a href="<?php echo $p[\'post_permalink\']; ?>"><?php echo $p[\'post_title\']; ?></a></li>
<?php endforeach; ?>
</ol>
<?php endif; ?>
这就是我现在设置代码的方式。问题是它既显示页面,也显示帖子。此外,我想在每个项目旁边添加特色缩略图,以及一系列自定义帖子类型。这可能吗?如果是这样,有人能帮我吗?