Änderungen in der sidebar.php werden nicht berücksichtigt (fold_page_list / Archiv)
Hallo,
habe in der Sidebar den fold_page_list eingebaut, sowie eine Archivanzeige, die per Dropdown aufgerufen wird. Jetzt stelle ich fest, dass beide Plugins / Modifikationen nicht mehr laufen.
Wer kann helfen?
<!-- Anfang der Sidebar -->
<div id="navi">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
<h2><?php _e('Pages'); ?></h2>
<ul>
<li><a href="<?php bloginfo('url'); ?>">Startseite</a></li>
<?php wswwpx_fold_page_list('sort_column=menu_order&title_li='); ?>
</ul>
<h2><?php _e('Archives'); ?></h2>
<ul>
<?php wp_get_archives('type=monthly&show_post_count=0&limit=15'); ?>
</ul>
<ul>
<select name="archive-dropdown" onChange='document.location.href=this.options[this.selectedIndex].value;'>
<option value=""><?php echo attribute_escape(__('Select Month')); ?></option>
<?php wp_get_archives('type=monthly&format=option&show_post_count=1'); ?> </select>
</ul>
<h2><label for="s"><?php _e('Suche'); ?></label></h2>
<form id="searchform" method="get" action="<?php echo $PHP_SELF; ?>">
<input type="text" name="s" id="s" size="17" class="navi-search" /><br />
<input type="submit" name="submit" value="<?php _e('Search'); ?>" />
</form>
<?php endif; ?>
<?php if (function_exists('wp_theme_switcher')) { ?>
<h2>Styleswitcher</h2>
<?php wp_theme_switcher(); ?>
<?php } ?>
</div>
<hr />
<!-- Ende der Sidebar -->