自定义帖子查看计数器WordPress

I am making custom post view counter but it's not working. I have made change on working post view code but not working.

<?php echo $td_mod_single->get_views();?> this one is working post view counter. I have changed it to like this <?php echo $count = rand(1,999); ?> but it's not working.

I have replaced this <?php echo $td_mod_single->get_views();?> to <?php echo $count = rand(1,999); ?>

Just do the rand, you don't need to count it..

<?php echo rand(1,999); ?>

This will output a random number between 1 and 999