Ставил и WP-PostViews и без плагина делал. Захожу на пост 1 просмотр, нажимаю на главную уже 4, обновил страницу уже 6, хотя я на пост даже не заходил. В чем может быть проблема, может с циклом поста быть что то не так?
<?php if ($wp_query->have_posts()) : ?>
<?php while ($wp_query->have_posts()) : $postcounter = $postcounter + 1; $wp_query->the_post();?>
<article>
<h2><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h2>
<div class="images">
<a href="<?php the_permalink() ?>">
<?php the_post_thumbnail('full') ?>
<?php the_content() ?>
</a>
</div>
<div class="overwrap-info">
<div class="head">
<?php the_category(', ' ); ?>
</div>
<div class="overwrap-views">
<span class="views"><?php if(function_exists('the_views')) { the_views(); } ?></span>
<div class="comments"><a href="">25</a></div>
</div>
</div>
</article>
<?php endwhile; ?>
<?php endif; ?>