Hier der gesamte sidebar Inhalt:
[COLOR="Red"]Bitte beachten![/COLOR]
:arrow: http://forum.wordpress-deutschland.org/plugins-und-wi…-den-posts.html
So, dann ist der rote Teil deine widgetfähige Sidebar:
<div id="sidebar">
<div id="noindent">
<ul id="sidebar">
[COLOR="#ff0000"]<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
<!-- Standard-Sidebar, wenn keine Widgets vorhanden sind -->
<?php [B]endif[/B]; ?>[/COLOR]
<!-- [COLOR="Blue"]zusätzliche statische Sidebar-Elemente[/COLOR] -->
</ul>
Alles was nach dem fett hervorgehobenen endif steht sind die [COLOR="#0000ff"]zusätzlichen statischen Sidebar-Elemente[/COLOR], diese werden immer angezeigt, egal ob die Sidebar widgetfähig ist oder nicht. Das hat dir maxe ja schon gesagt.
Wenn du die anderen Sidebarinhalte nicht haben möchtest oder durch Widgets ersetzen möchtest, dann verschiebe das endif ganz ans Ende deiner Sidebar:
<li>
<h2><?php _e('Search','relaxation'); ?></h2>
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
</li>
<?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?>
<li>
<h2><?php _e('Categories','relaxation'); ?></h2>
<ul>
<?php list_cats(0, '', 'name', 'asc', '', 1, 0, 1, 1, 1, 1, 0,'','','','','') ?>
</ul>
</li>
<li>
<h2><?php _e('Archive','relaxation'); ?></h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>
<?php get_links_list(); ?>
<li>
<a href="http://www.jogmap.de"> <img alt="jogmap" width="154" src="http://www.jogmap.net/laufstrecken/23891.jpg" class="alignleft"/></a>
<h2><?php _e('Meta','relaxation'); ?></h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<?php wp_meta(); ?>
</ul>
</li>
<li><br /><br /><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Entries (RSS)', 'relaxation')?>"><img src="<?php bloginfo('template_directory'); ?>/images/rss.png" alt="<?php _e('Entries (RSS)', 'relaxation')?>" height="15" width="80" /></a></li>
<li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('Comments (RSS)', 'relaxation')?>"><img src="<?php bloginfo('template_directory'); ?>/images/rss-comments.png" alt="<?php _e('Comments (RSS)', 'relaxation')?>" height="15" width="80" /></a></li>
<li><br /><a href="http://validator.w3.org/check/referer" title="Valid XHTML 1.1"><img src="<?php bloginfo('template_directory'); ?>/images/valid-xhtml11.png" alt="Valid XHTML 1.1" height="15" width="80" /></a></li>
<li><a href="http://jigsaw.w3.org/css-validator/check/referer" title="Valid CSS"><img src="<?php bloginfo('template_directory'); ?>/images/valid-css.png" alt="Valid CSS" height="15" width="80" /></a></li>
</ul>
[COLOR="Red"][B]<?php endif; ?>[/B][/COLOR]
</div> <!-- end of noindent -->
</div> <!-- end of sidebar -->
Alles anzeigen