ysf1905 adlı üyeden alıntı: mesajı görüntüle
seninkinin sonuna exclude=10 bunu ekle yani şu şekilde olucak.
<?php wp_list_cats('sort_column=name&optioncount=1&hiera rchical=1&exclude=10'); ?>
Yok hocam olmadı

Sitebar.php

Alıntı
<div id="sidebar">
<?php if (is_home()) { $check_home = '1'; } else { $check_home = '0'; } ?>

<div class="sidebar_left">
<ul>
<li>
<?php include('adsense_sidebar.php') ?>
</li>

<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) : ?>

<?php endif; ?>
</ul>
</div>

<div class="sidebar_right">
<ul>
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(2) ) : ?>
<li>
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
</li>

<?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?>

<li><h2>Archives</h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>
<li><h2>Categories</h2>
<ul>
<?php wp_list_cats('sort_column=name&optioncount=1&hiera rchical=1&exclude=10'); ?>
</ul>
</li>

<li><h2>Recent Entries</h2>
<ul>
<?php query_posts('showposts=10'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title() ?></a></li>
<?php endwhile; endif; ?>
</ul>
</li>

<?php /* If this is the frontpage */ if ($check_home == '1') { ?>
<?php get_links_list(); ?>

<li><h2>Meta</h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li>
<li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
<li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li>
<?php wp_meta(); ?>
</ul>
</li>
<?php } ?>
<?php endif; ?>
</ul>
</div>
<div style="clear:both;"></div>
</div>