Du hast vergessen, der sidebar.php mitzuteilen, das sie ab sofort Widgets aufnehmen kann. (Ich sollte den FAQ-Artikel vielleicht dahingehend noch etwas abändern...)
<div id="sidebar">
<ul>
[COLOR="Red"]<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>[/COLOR]
<!-- <li><h2>About</h2>
You can put a small amount of info about you here.<br /> Name, contact details etc.
</li> -->
<li><h2><?php _e('Categories'); ?></h2>
<ul>
<?php list_cats() ?>
</ul>
</li>
<li><h2><?php _e('Monthly Archives:'); ?></h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>
<?php /* If this is the frontpage */ if (is_home()) { ?>
<li><h2><?php _e('Links'); ?></h2>
<ul>
<?php get_links('-1', '<li>', '</li>', '<br />'); ?>
</ul>
</li>
<li><h2><?php _e('Meta'); ?></h2>
<ul>
<li><?php wp_loginout(); ?></li>
<li><a href="http://validator.w3.org/check/referer" 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="http://wordpress.org/" title="<?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.'); ?>"><abbr title="WordPress">WordPress </abbr></a></li>
<?php wp_meta(); ?>
</ul>
</li>
<?php } ?>
[COLOR="#ff0000"]<?php endif; ?>[/COLOR]
</ul>
</div>
Alles anzeigen
PS: Für längere Codeabschnitte bitte die Code-Buttons des Foreneditors verwenden. Danke. 