Kullandigim temayi yaparlarken sanirim hatali yapmislar kategorilerde kategoriye ayit konular degil bütün konular cikiyor bunu nasil düzeltebilirim

Kodlar:
<?php get_header(); ?>


<div id="content">

        <div class="filterbar_scnd">

	<h1><?php printf( __( 'Category Archives: %s' ), '<span>' . single_cat_title( '', false ) . '</span>' ); ?></h1>

	&nbsp;

	</div>

	

	<?php echo category_description(); /* displays the category's description from the Wordpress admin */ ?>

	

     <div id="content_inner">

	  <?php query_posts('showposts=10&paged=' . get_query_var('paged'));?>

           <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

		 <ul class="lp_lists">

                    <li class="lp_container">

                        <div class="lp_left">

                            <?php if(has_post_thumbnail()) :?>

                            <div class="thumbnailimg">

                                    <?php the_post_thumbnail(); ?>

                            </div>

                            <?php endif; ?>

                            <div class="lp_desc">

                             <?php the_content(); ?>

                            </div>

                        </div><!--lp left ends-->

                        <div class="lp_right">

                            <div class="lp_title">

                               <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>

                            </div>

                            <div class="lp_category">

                                <?php the_category(', ') ?>

                            </div>

                            <div class="lp_dates">

                               <?php echo get_the_date(); ?><span class="spacer">at</span><?php echo get_the_time(); ?>

                            </div>

                            <div class="lp_comments">

                                <div class="lpc_butt">

                                

                        <a href="<?php the_permalink(); ?>">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

                        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

                        </a>



                                </div>

                                <div class="lpc_words">

                                   <div class="lpc_counter"><a href="<?php the_permalink(); ?>">See Comments!</a></div>

                                </div>

                            </div>

                            <div class="lpc_sharing">

                                <div class="lpcs_top">

                                </div>

                                <div class="lpcs_bottom">

                                                                       



											<div class="lpcs_sbutt" id="lpcs_fbutt" >

                                            

                                        </div>





                                </div>

                            </div>

                        </div><!--lp right ends-->

                        <div style="clear: both;"></div>

                    </li><!--lp container ends-->

                    </ul>

	<?php endwhile; else: ?>

		<div class="no-results">

			<p><strong><?php _e('There has been an error.'); ?></strong></p>

			<p><?php _e('We apologize for any inconvenience, please hit back on your browser or use the search form below.'); ?></p>

			<?php get_search_form(); /* outputs the default Wordpress search form */ ?>

		</div><!--noResults-->

	<?php endif; ?>

  </div>

	<div class="oldernewer">

		<p class="older"><?php next_posts_link('&laquo; Older Entries') ?></p>

		<p class="newer"><?php previous_posts_link('Newer Entries &raquo;') ?></p>

	</div><!--.oldernewer-->

	

</div><!--#content-->

<?php get_sidebar(); ?>

<?php get_footer(); ?>