Hoi.
du könntest dir n Template für ne Seite anlegen und auf der dann die Blogroll ausgeben lassen.
Zum Beispiel so:
<h2>Blogroll</h2>
<ul>
<?php get_links('-1', '<li>', '</li>', '', 0, 'name', 0, 0, -1, 0); ?>
</ul>
Ich habe mir mal die Mühe gemacht und ein Template geschrieben. Noch ein wenig modifizieren und schon kannst du es verwenden.
<?php
/*
Template Name: Blogroll Template
Author: Homer J.
Author URI: http://www.wordpress-rockt.de
*/
?>
<?php get_header(); ?>
<div id="content">
<div class="post-nav"> <span class="previous"><?php previous_post_link('%link') ?></span> <span class="next"><?php next_post_link('%link') ?></span></div>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="date"><span><?php the_time('M') ?></span> <?php the_time('d') ?></div>
<div class="title">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Direktlink zu <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="postdata"><SPAN class="category"><?php the_category(', ') ?></SPAN> <span class="right mini-add-comment"><a href="#respond">Kommentar hinzufügen</a></span></div>
</div>
<div class="entry">
<?php the_content('Continue reading »'); ?>
<?php link_pages('<p><strong>Seiten:</strong> ', '</p>', 'number'); ?>
<?php get_links('-1', '<li>', '</li>', '<br />', TRUE, '_rating', TRUE, FALSE, -1, TRUE, TRUE); ?>
<br />
<span><?php adsensem_ad(); ?></span>
<br />
<?php edit_post_link('Editieren', '', ''); ?>
</div><!--/entry -->
<?php comments_template(); ?>
<?php endwhile; else: ?>
<p>Entschuldigung, kein Eintrag entspricht deinen Kriterien.</p>
<?php endif; ?>
</div><!--/post -->
</div><!--/content -->
<div id="footer"><center>© 2007 by Frankies World</center></div>
</div><!--/left-col -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Alles anzeigen
Ich habe das Template auch gleich mal angehängt. Das musst du in den Ordner von deinem Theme hochladen.