我在 wordpress 主题中有这个功能:
// function to count views.
function setPostViews_anthemes($postID) {
$count_key = 'post_views_count';
$count = get_post_meta($postID, $count_key, true);
if($count==''){
$count = 0;
delete_post_meta($postID, $count_key);
add_post_meta($postID, $count_key, '0');
}else{
$count++;
update_post_meta($postID, $count_key, $count);
}
}
我需要查看次数显示从 1 到 999 的随机数