Hallo,
mein Blog ist auf http://www.christina-seip.de
Ich habe bereits mehrere Kategorien erstellt, auch Unterkategorien. Leider wird nur "Allgemein" und "Plugins" angezeigt.
Was mache ich falsch?
Hier der Code von sidebar.php:
PHP
<div id="sidebar">
<ul>
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) : ?>
<li>
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
</li>
<li><h2><?php _e('Categories'); ?></h2></li>
<li><ul>
<?php wp_list_cats('&optioncount=1&hierarchical=1'); ?>
</ul>
</li>
<li>
<?php /* If this is a category archive */ if (is_category()) { ?>
<p>You are currently browsing the archives for the <?php single_cat_title(''); ?> category.</p>
<?php /* If this is a yearly archive */ } elseif (is_day()) { ?>
<p>You are currently browsing the <a href="<?php echo get_settings('siteurl'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives
for the day <?php the_time('l, F jS, Y'); ?>.</p>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<p>You are currently browsing the <a href="<?php echo get_settings('siteurl'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives
for <?php the_time('F, Y'); ?>.</p>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<p>You are currently browsing the <a href="<?php echo get_settings('siteurl'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives
for the year <?php the_time('Y'); ?>.</p>
<?php /* If this is a monthly archive */ } elseif (is_search()) { ?>
<p>You have searched the <a href="<?php echo get_settings('siteurl'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives
for <strong>'<?php echo wp_specialchars($s); ?>'</strong>. If you are unable to find anything in these search results, you can try one of these links.</p>
<?php /* If this is a monthly archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
<p>You are currently browsing the <a href="<?php echo get_settings('siteurl'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives.</p>
<?php } ?>
</li>
<h2><?php _e('Spruecheklopfer'); ?></h2>
<p>
<?php wp_quotes_random(365); ?>
</p>
<li><h2><?php _e('Archiv'); ?></h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>
<?php wp_list_pages('title_li=<h2>' . __('Pages') . '</h2>' ); ?>
<div class="feedback"></div>
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
<?php get_links_list(); ?>
<?php if (function_exists('wp_theme_switcher')) { ?>
<li><h2><?php _e('Themes'); ?></h2>
<?php wp_theme_switcher(); ?>
</li>
<?php } ?>
<!-- Disabled calendar by default <?php get_calendar(); ?> -->
<br>
<li><h2><?php _e('Internes'); ?></h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="[URL="http://validator.w3.org/check/referer"]http://validator.w3.org/check/referer[/URL]" title="<?php _e('This page validates as XHTML 1.0 Transitional'); ?>"><?php _e('Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>'); ?></a></li>
<li><a href="<A href="http://gmpg.org/xfn/"><abbr">http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
<li><a href="[URL="http://wordpress.org/"]http://wordpress.org/[/URL]" title="<?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.'); ?>">WordPress</a></li>
<?php wp_meta(); ?>
</ul>
</li>
<?php } ?>
<?php endif; ?>
</ul>
<div class="theme">
<br>
<a href="<A href="http://aydin.net/blog/2006/02/13/wordpress-theme-three-column-black-letterhead/">3cbl</a">http://aydin.net/blog/2006/02/13/wordpress-theme-three-column-black-letterhead/">3cbl</a> theme by <a href="<A href="http://aydin.net/blog">Hakan">http://aydin.net/blog">Hakan Aydin</a>
</div>
</div>
Alles anzeigen
Gruss
Chris