arkadaşlar kategoriye girince yan menüler aşağıda gözküyor sayfayı bozan bir şey yok ama öyle nasıl çözebilirim.kodlar aşağıda belki çözebilirsiniz.
Örnek kategori <?php get_header(); ?>
<div class="primaryContent">
<div class="post">
<?php is_tag(); ?>
<?php if (have_posts()) : ?>
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
<?php /* If this is a category archive */ if (is_category()) { ?>
<h2 class="pagetitle">‘<?php single_cat_title(); ?>’ Kategorisi için Arşiv</h2>
<?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
<h2 class="pagetitle">‘<?php single_tag_title(); ?>’ olarak etiketlenmiş yazılar</h2>
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<h2 class="pagetitle"><?php the_time('d F Y'); ?> için Arşiv</h2>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<h2 class="pagetitle"><?php the_time('F Y'); ?> için Arşiv</h2>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<h2 class="pagetitle"><?php the_time('Y'); ?> için Arşiv</h2>
<?php /* If this is an author archive */ } elseif (is_author()) { ?>
<h2 class="pagetitle">Yazar Arşivi</h2>
<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
<h2 class="pagetitle">Blog Arşivi</h2>
<?php } ?>
</div>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h1>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>">
<?php the_title(); ?>
</a>
</h1>
<p class="post-detail">
Yazar: <strong><?php the_author_link() ?></strong> | Yayın Tarihi:
<strong><?php the_time('d F Y') ?></strong> | Yorumlar:
<strong><a href="<?php comments_link(); ?>" title="Yorumlar">
<?php comments_number('Henüz Yorum Yok :(', '1 Yorum', '% Yorum' );?>
</a></strong> <br /> Kategori: <strong><?php the_category(', '); ?></strong>
</p>
<?php the_content('Yazının Devamı »'); ?>
<div class="clear"></div>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2 class="center">Bulunamadı</h2>
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
<?php endif; ?>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>