Arkadaşlar eklenti olarak postview kullanıyorum.
Ok ile belirttiğim yere konu gösterim sayısını nasıl eklerim?



İndex kodları

<?php get_header(); ?>
<div id="icerik">
<?php $vid = get_option('kt_vid'); ?>
<?php $args = array('cat' => $vid, 'paged' => $paged ); ?>
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts($args); ?>
<div id="konular">	
		<?php if(get_option('kt_twtonay') == 'evet') { include (TEMPLATEPATH . '/twt.php'); } ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="konu">
<div class="resim">
<?php $image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full'); if ( has_post_thumbnail() ) { ?>
<a title="<?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><img src="<?php bloginfo('template_url'); ?>/timthumb.php?src=<?php echo $image_url[0]; ?>&amp;w=200&amp;h=150&amp;zc=1" alt="<?php the_title(); ?>" width="200" height="150" /></a>
<?php } else { ?>
<a title="<?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><img src="<?php echo get_post_meta($post->ID, 'resim',true) ?>" alt="<?php the_title(); ?>" width="200" height="150" /></a>
<?php } ?>
</div>
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<?php echo kt_limit(get_the_excerpt(), 50); ?>

<div class="yazibilgi"><span class="yazar"><?php the_author(); ?></span><span class="kat"><?php the_category(', ') ?></span><span class="yorum"><?php comments_number('0', '1', '%'); ?> Yorum</span><span class="zaman"><?php the_time('j F Y') ?></span><span class="devami"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">Devamı..</a></span></div>
</div>
<?php endwhile; ?>
<div class="temizle"></div>
<?php wp_reset_query(); ?>
<div class="sayfalama"><?php echo kt_sayfa(); ?></div>
<?php else : ?>
		<div class="yok">
		<h2>Gösterilecek yazı bulunamamıştır.</h2>
		<p>Bulunduğunuz sayfada yazı bulunmuyor, lütfen arama kutusunu kullanınız.</p>
		</div>
		<?php endif; ?>
<div class="medya">
<?php $video = get_option('kt_video'); ?>
<?php  $c = 1; $query3 = new WP_Query();$query3->query('showposts=5&cat='. $video .''); ?>

</div>			
</div>
</div>
<?php get_sidebar(); get_footer(); ?>