以下是我如何获得一篇帖子的观点:
function getPostViews($postID){
$count_key = \'post_views_count\';
$count = get_post_meta($postID, $count_key, true);
if($count==\'\'){
delete_post_meta($postID, $count_key);
add_post_meta($postID, $count_key, \'0\');
return "0 View";
}
return $count.\' Views\';
}
比方说,我想从5000篇帖子中找出浏览量最大的帖子,并显示前5位浏览量最大的帖子。
如何进行查询以实现此目的?