Merhaba,
Temanızın function dosyasına bu kodu uygun yere koyun.
function track_total_visitors() {
    if (is_single()) {
        $count_key = 'total_visitors';
        $count = get_post_meta(get_the_ID(), $count_key, true);
        if ($count == '') {
            $count = 0;
            delete_post_meta(get_the_ID(), $count_key);
            add_post_meta(get_the_ID(), $count_key, '0');
        } else {
            $count++;
            update_post_meta(get_the_ID(), $count_key, $count);
        }
    }
}
add_action( 'wp_head', 'track_total_visitors');
Bu kod ise istediğiniz yere koyarak görüntü alabilrsiniz dilediğiniz gibi formatı değiştirebilirsiniz.

<p>Toplam Ziyaretçi Sayısı: <?php echo get_post_meta(get_the_ID(), 'total_visitors', true); ?></p>