How to show the number of website visitors in my theme

Here is what you need to use for the expected result:

<p> Today's Views:   <span> <?php echo wp_statistics_visit('today'); ?>  </span></p><br><br>

<p>Yesterday's Views:   <span> <?php echo wp_statistics_visit('yesterday'); ?> </span></p><br><br>

<p>All times Views:   <span> <?php echo wp_statistics_visit('total'); ?> </span></p><br><br>