0

私はワードプレスのテーマでこの機能を持っています:

// 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 までの乱数を示す必要があります

4

1 に答える 1

1

PHP でから1までのランダムな整数を生成するには、次を使用します。999rand(1,999)

// function to count views.
function setPostViews_anthemes($postID) {
    $count_key = 'post_views_count';
    $count = rand(1,999);   
    update_post_meta($postID, $count_key, $count);
}
于 2016-06-03T17:38:59.707 に答える