na, die ganzen fix eingetragenen Widgets ;-)
z.B. [COLOR=#000000]Recent Posts[/COLOR]
PHP
<li>
<h2>Recent Posts</h2>
<ul>
<?php $myposts = get_posts('numberposts=10&offset=1');foreach($myposts as $post) :?>
<li>
<a href="<?php the_permalink(); ?>"><?php the_title();?></a>
</li>
<?php endforeach; ?>
</ul>
</li>
oder die Kategorien
oder Blockroll
PHP
<li>
<h2>Blogroll</h2>
<ul>
<?php get_links(-1, '<li>', '</li>', 'between', FALSE, 'name', FALSE, FALSE, -1, FALSE); ?>
<li><a href="http://www.seojobsnow.com">Seo Jobs</a></li>
</ul>
</li>
usw.
also leer sieht dies dann so aus
PHP
<div class="sidebar1">
<ul>
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('sidebar 1') ) : else : ?>
hier die neuen Widgets eintragen
<?php endif; ?>
</ul>
</div>
Alles anzeigen
und dafür fügst du den Code deiner neuen Widgets ein ;-)