und wo bitte? Ich finde nichts
PHP-Code:
<div id="sidebar">
<ul>
<li><h2>Über</h2>
<ul>
Hier steht dann irgendein Text - oder auch nicht.
</ul>
</li>
<li><h2><?php _e('Aktuelles 2008'); ?></h2>
<ul>
<?php list_cats() ?>
</ul>
</li>
<?php if (function_exists('wp_theme_switcher')) { ?>
<li><h2><?php _e('Themes'); ?></h2>
<?php wp_theme_switcher(); ?>
</li>
<?php } ?>
<?php wp_list_pages('title_li=<h2>' . __('Service, Formulare und Co.') . '</h2>' ); ?>
<li><h2><?php _e('Links'); ?></h2>
<ul>
<?php get_links('-1', '<li>', '</li>', '<br />'); ?>
</ul>
</li>
</ul>
</div>