标签: 浏览次数

WordPress设置和获取浏览次数

<?php /** * getPostViews()函数 * 功能:获取阅读数量 * 在需要显示浏览次数的位置,调用此函数 * @Param object|int $postID 文章的id * @Return string $count 文章阅读数量 */ function getPostViews( $postID ) { $count_key = ‘post_views_count’;
阅读更多 »