<?php
/*
Template Name: Site Haritası
*/
?>
<?php get_header(); ?>
    <div class="post">
        <h2 class="title"><?php the_title(); ?></h2>
            <div class="entry">
            
                <h3>Sabit Sayfalar</h3>
                    <ul>
                        <?php wp_list_pages('depth=0&sort_column=menu_order&title_li=' ); ?>
                    </ul>
                    
                    <h3>Kategoriler</h3>
                    <ul>
                        <?php wp_list_categories('title_li=&hierarchical=0&show_count=1') ?>
                    </ul>
                    
                    <h3>İçerik Listesi</h3>
                        <?php
                            query_posts('cat=cat_ID');
                        ?>
                            <h4>Kategorisindeki Yaılar</h4>
                                <ul>
                                    <?php while (have_posts()) : the_post(); ?>
                                    <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a> - (<?php echo $post->comment_count ?> Yorum)</li>
                                    <?php endwhile;  ?>
                                </ul>
            </div><!-- /.entry -->
        </div><!-- /.post -->

<?php get_sidebar(); ?>        
<?php get_footer(); ?>
query_posts('cat=cat_ID'); cat_ID kısmına içeriğini çekmek istediğiniz kategorinin ID'sin yazın.