pawliger adlı üyeden alıntı: mesajı görüntüle
ama index deki konu basan kod kısmı farklı kodlanmış oraya nasıl ekleyecegim ?

konunun basıldıgı kod

<!-- primary content -->
<div id="primary-content">
<div class="blocks">
<?php do_action('mystique_before_primary'); ?>
<?php
if (have_posts()):
while (have_posts()):
<img src="<?php bloginfo('url'); ?>/timthumb.php?src=<?php echo get_post_meta($post->ID, 'resim',true) ?>&amp;w=120&amp;h=80&amp;zc=1&amp;q=60" alt="<?php the_title(); ?>">
the_post();
mystique_post();
endwhile;

mystique_pagenavi();
else: ?>
<h1 class="title error"><?php _e("No posts found","mystique"); ?></h1>
<p><?php _e("Sorry, but you are looking for something that isn't here.","mystique"); ?></p>

<?php endif; ?>
<?php do_action('mystique_after_primary'); ?>
</div>
</div>
<!-- /primary content -->
deneyin
<!-- primary content -->
    <div id="primary-content">
     <div class="blocks">
      <?php do_action('mystique_before_primary'); ?>
      <?php
       if (have_posts()):
        while (have_posts()):
         the_post();
         mystique_post();
        endwhile;

        mystique_pagenavi();
       else: ?>
       <h1 class="title error"><?php _e("No posts found","mystique"); ?></h1>
       <p><?php _e("Sorry, but you are looking for something that isn't here.","mystique"); ?></p>

      <?php endif; ?>
      <?php do_action('mystique_after_primary'); ?>
     </div>
    </div>
    <!-- /primary content -->