krmcnyldrm adlı üyeden alıntı: mesajı görüntüle
bu kodlar category.php'de ise şu işini görecektir,
         <?php query_posts('showposts=100&orderby=date'); ?> 
                <?php while (have_posts()) : the_post(); ?>
işimi görmedi bebim category.php şemam şu şekilde

<?php
get_header(); ?>

<div style="padding:0 0 0 0;margin:0 0 0 0;" class="col-md-8">
<div style="padding:0 0 0 0;margin:0 0 0 0;" class="bs-component">
              <table style="padding:0 0 0 0;margin:0 0 0 0;" class="table table-striped table-hover ">
                <thead>
                  <tr>
 <th>#</th>
                    <th>Başlık</th>
<th>Kategori</th>
                    <th>Tarih</th>

                    <th>Okunma Sayısı</th>
                  </tr>
                </thead>
                <tbody>
				                <?php query_posts('showposts=100&orderby=date&cat=1'); ?> 

                <?php while (have_posts()) : the_post(); ?>
				
                  <tr>
  <td><?php the_ID(); ?></td>
                  
                    <td><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></td>
                              <td><span class="label label-primaryy"><?php the_category('title_li='); ?></span></td>

                    <td><span class="label label-default"><?php the_time('j M Y') ?></span></td>
                    <td><span class="label label-primary"><?php echo getPostViews(get_the_ID()); ?></span></td>
                  </tr>
				<?php endwhile; ?>
                </tbody>
              </table> 



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