Hallo Leute,
hier erstmal der Link zu meinem Blog: http://www.curlyrob.de/curlyrob
So und nun zu meinem Prob. Ich würde gerne eine Unterscheidung zwischen Links und der Blogroll treffen, aber anscheinend ist das in diesem Theme nicht hinterlegt, es werden alle Links oder auch Einträge in der "Links"-Spalte zusammengefasst.
Wichtig ist mir vorallem, das man die Links und auch Blogs auch im WP-Admin Bereich bearbeiten kann.
Anbei schicke ich euch mal den Code meiner sidebar.php, vielleicht könnt ihr ja eher damit was anfangen als ich:
PHP
<div id="sidebar">
<ul>
</li>
<?php wp_list_pages('depth=1_sort_column=menu_order&exclude=24&title_li=<h2>' . __('Pages') . '</h2>' ); ?>
<li>
<li>
<h2>Zufallsbilder</h2>
<?php myrandompic(5); ?>
<li>
<h2>
<?php _e('Search'); ?>
</h2>
<form method="get" action="<?php bloginfo('url'); ?>/index.php">
<input type="text" name="s" size="14" />
<br/>
<input type="submit" id="button" name="Submit" value="Suche" />
</form>
</li>
<li>
<h2>
<?php _e('Categories'); ?>
</h2>
<ul>
<?php wp_list_cats('sort_column=name&optioncount=1'); ?>
</ul>
</li>
<li>
<h2>
<?php _e('Archives'); ?>
</h2>
<ul>
<?php wp_get_archives('type=monthly&show_post_count=1'); ?>
</ul>
<h2 class="sidebar-title">
<?php _e('Links'); ?>
</h2>
<ul>
<?php get_links('-1', '<li>', '</li>', '<br />'); ?>
</ul>
</li>
<li>
<h2>
<?php _e('Meta'); ?>
</h2>
<ul>
<?php wp_register(); ?>
<li>
<?php wp_loginout(); ?>
</li>
<li><a href="<?php bloginfo('rss2_url'); ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/rss.gif" width="80" height="15" border="0" alt="Subscribe to RSS feed"/></a></li>
<li><a href="<?php bloginfo('comments_rss2_url'); ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/rsscomments.gif" width="80" height="15" border="0" alt="The latest comments to all posts in RSS"/></a></li>
<li><a href="<?php bloginfo('atom.php'); ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/atom.gif" width="80" height="15" border="0" alt="Subscribe to Atom feed"/></a></li>
<li><a href="http://validator.w3.org/check/referer"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/xhtml.gif" width="80" height="15" border="0" alt="Valid XHTML code"/></a></li>
<li><a href="http://jigsaw.w3.org/css-validator/check/referer"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/css.gif" width="80" height="15" border="0" alt="Valid CSS code"/></a></li>
<?php wp_meta(); ?>
</ul>
</li>
</ul>
</div>
Alles anzeigen
Ich hoffe ich habe mein Problem hinreichend dargestellt....
Gruß
Robert