Erst einmal einen guten Abend und ich weiß das diese Frage schon oft vorgekommen ist. Ich habe hier auch im Forum gesucht und Lösungen gefunden. Aber anscheinend bin ich zu dumm das meine Seiten der Reihe nach, wie ich es unter "Seite schreiben" einstelle, (nicht alphabetisch) geordnet werden.
Hier einmal mein Quellcode der sidebar:
PHP
<!-- begin sidebar -->
<div id="sidebar">
<!-- Single post settings -->
<?php if (is_single()) { ?>
<h2><?php _e('Post info'); ?></h2>
<div><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a> was written
<!-- by <?php the_author(); ?> -->
on <?php the_date(); ?> and filed in
<?php the_category(',') ?>.</div>
<?php if ( comments_open() ) : ?>
<div>Es gibt <a href="<?php comments_link(); ?>" title="<?php _e('Comments to'); ?> <?php the_title(); ?>"><?php comments_number('0','1','%'); ?> Kommentare</a> , <a href="<?php the_permalink() ?>#postcomment" rel="bookmark"
title="<?php _e('Post comments to'); ?> <?php the_title(); ?>">
post a comment</a> .</div>
<?php endif; ?>
<?php } ?>
<!--/ Single post settings -->
<ul>
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar() ) : else : ?>
<li id="search">
<form id="searchform" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<h2><label for="s"><?php _e('Search'); ?></label></h2>
<input type="text" value="searchstring" name="s" id="s" size="10" />
<input type="submit" accesskey="s" value="<?php _e('Search'); ?>" />
</form>
</li>
<?php if ( is_home() || is_archive() ) { ?>
<li><?php get_calendar(); ?></li>
<?php } ?>
<?php if (is_home()) { ?>
<li><h2><?php _e('Latest posts'); ?></h2>
<ul>
<?php wp_get_archives('type=postbypost&limit=5'); ?>
</ul>
</li>
<?php } ?>
<li><h2>Seiten</h2>
<ul>
<?php wp_list_pages('sort_column=menu_order'); ?>
</ul>
</li>
<li><h2><?php _e('Categories'); ?></h2>
<ul>
<?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=0'); ?>
</ul>
</li>
<!-- Archive settings -->
<?php if (is_archive()) { ?>
<li><h2><?php _e('Archive'); ?></h2>
<ul>
<?php wp_get_archives('type=monthly&show_post_count=1'); ?>
</ul>
</li>
<!--
<li><h2><?php _e('Authors'); ?></h2>
<ul>
<?php wp_list_authors('sort_optioncount=1'); ?>
</ul>
</li>
-->
<?php } ?>
<!--/ Archive settings -->
<li><h2><?php _e('Meta'); ?></h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS'); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<li><a href="http://validator.w3.org/check?uri=referer" title="Valid XHTML 1.0 Transitional">
xhtml 1.0</a></li>
<li><a href="http://jigsaw.w3.org/css-validator/check/referer" title="Valid CSS 2">
css 2</a></li>
<li><a href="http://www.contentquality.com/" title="WCAG 1.0 - Priority 2">
WAI - AA</a></li>
<?php wp_meta(); ?>
</ul>
</li>
<?php if (is_home()) { ?>
<?php get_links_list('id'); ?>
<?php } ?>
<?php if (is_home() && function_exists('wp_theme_switcher') ) { ?>
<li>
<h2><?php _e('Themes'); ?></h2>
<?php wp_theme_switcher(); ?>
</li>
<?php } ?>
<?php endif; ?>
</ul>
</div>
<!-- end sidebar -->
Alles anzeigen
So wie es hier steht funzt es nicht, leider auch nicht mit jeder anderen confi von
.
Wäre für Hilfe dankbar.