genel olarak yapıyı sağ sol diye ayıramazsınız. her postu sağ sol diye ayırmanız lazım.
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div id="post">
<div class="solbilgiler">
tarih, vs
</div>
<div class="sagbilgi">
yazı içeriği
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
solbilgiler class'ı, float:left olmalı. sagbilgi class'ı da float:right.
çok teşekkür ederim aynen dediğin gibi bi döngü içinde çözümü buldum ilerde bu sorunla karşılaşanlar olursa diye çözümü yazıyorum.
örnek kod :
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="primaryContent">
<div class="posth"><h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2></div>
<div class="post" <?php post_class() ?> id="post-<?php the_ID(); ?>">
<?php the_content('Read the rest of this entry »'); ?>
</div>
<div class="postinfo"><p><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p></div>
<div style="clear:both;"></div>
</div>