wordpresste kendi siteme farklı bir sayfa yapısı oluşturdum..

beni istediğim istediğim 1 kategoriyi sadece o sayfada çıkartmak ama istediğim kategori dışında baska kategorilere ait konularda çıkmakta..

şu linkte yapmaya çalıştığım sayfa.. http://www.mmogin.com/videolar

ustten 2. sıranın alt tarafı oldugu gibi baska kateorilere ait...

şuradaki kod ile dondurmesini istediğim kategorilerin IDsini giriyorum, tek bir kategorisin İD sini yazdım fakat baska kategori konlarıda çıkıyor..


Kullandığım tema egamer

<?php

 {

	$args=array(

	   'showposts'=>21,

	   'paged'=> $paged,

	   'category__not_in' => 388,

	);

};

query_posts($args);

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








TÜM SAYFANIN KODU

<?php /*
Template Name: videolar icin
*/
?>
<?php get_header(); ?>




<div id="container">

<div id="left-div">

    <div id="left-inside">

<?php if (get_option('egamer_featured') == 'on') { ?>




<?php
// added by <yourname> in order to add the slideshow using the frontpage-slideshow plugin 
echo do_shortcode('[FrontpageSlideshow fs_cats=388 fs_slides=6 fs_main_width=627px fs_main_height=240px fs_slide_width=65% fs_buttons_width=35% fs_text_opacity=55% fs_rounded=0 fs_template=default]');
?>



<?php }; ?>




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

<?php

 {

	$args=array(

	   'showposts'=>21,

	   'paged'=> $paged,

	   'category__not_in' => 388,

	);

};

query_posts($args);

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



<?php $width = 120;

	  $height = 90;

			  

	  $classtext = 'thumbnail';

	  $titletext = get_the_title();



	  $thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext,false,'image_value');

	  $thumb = $thumbnail["thumb"];  ?>



<div class="home-post-wrap_video">

    <div class="home-post-titles_video">

        <h2><a href="<?php the_permalink() ?>" title="<?php printf(__(' %s','eGamer'), get_the_title()) ?>">

            <?php truncate_title(30); ?>

            </a></h2>

        

		<?php if (get_option('egamer_postinfo2') <> '') { ?>

			<?php if (in_array('comments', get_option('egamer_postinfo2'))) { ?>

				

			<?php }; ?>

		<?php }; ?>

	</div>

    <div class="post-inside" > 
       

		<?php if($thumb <> '') { ?>

			<a href="<?php the_permalink() ?>" title="<?php printf(__('Permanent Link to %s','eGamer'), get_the_title()) ?>">

			<center>	<?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext, $width, $height, $classtext); ?> </center>
		

			</a>

        <?php }; ?>



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






        </div>

</div>

<?php endwhile; ?>

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

<?php if (get_option('egamer_home_navi') == 'on') { ?>  

<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } 

else { ?>

<p class="pagination">

    <?php next_posts_link(__('&laquo; Previous Entries','eGamer')) ?>

	<?php previous_posts_link(__('Next Entries &raquo;','eGamer')) ?>

</p>

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

<?php } ?>

<?php } ?>



<?php else : ?>

<!--If no results are found-->

<h1><?php _e('No Results Found','eGamer') ?></h1>

<p><?php _e('The page you requested could not be found. Try refining your search, or use the navigation above to locate the post.','eGamer') ?></p>

<!--End if no results are found-->

<?php endif; ?>

<?php wp_reset_query(); ?>










    </div>

</div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>

</body>

</html>