Nun habe ich alle Themen abegrast aber irgendwas beisst sich in meinem Template... Er sotiert nicht nach den manuell im Backend eingegebenen Reihenfolge.
Hier der Quellcode
PHP
<div id="sidebar">
<h2>Suche</h2>
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar() ) : ?>
<h2>Seiten</h2>
<ul>
<?php wp_list_pages('sort_column=menu_order&title_li='); ?>
</ul>
<h2>Kategorien</h2>
<ul>
<?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=0'); ?>
</ul>
<h2>Autoren</h2>
<ul>
<?php wp_list_authors('show_fullname=1&optioncount=1&exclude_admin=0&hide_empty=1'); ?>
</ul>
<h2>Blogrolle</h2>
<ul>
<?php get_links('-1', '<li>', '</li>', '', 0, 'name', 0, 0, -1, 0); ?>
</ul>
<h2>Feeds</h2>
<ul>
<li><a href="<?php bloginfo('rss2_url'); ?>" title="Artikel als RSS 2.0 Feed">Artikel <em>(RSS 2.0)</em></a></li>
<li><a href="<?php bloginfo('atom_url'); ?>" title="Artikel als Atom Feed">Artikel <em>(Atom)</em></a></li>
<li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="Kommentare als RSS 2.0 Feed">Kommentare <em>(RSS 2.0)</em></a></li>
</ul>
<h2>Meta</h2>
<ul>
<li><?php wp_loginout(); ?></li>
<?php wp_register(); ?>
</ul>
<?php endif; ?>
</div>
Alles anzeigen
Dankeschön fürs anschauen *gg* so wer findet den Fehler?