Hallo, ich bin Anfänger in Wordpress. Mein Ziel ist die Blogrolls zu enfernen. Ich habe im Forum nachgeschaut, bin aber nicht so richtig schlau geworden. Das liegt wohl auch daran das meine sidebar.php nicht mit den beschriebenen sidebars übereinstimmt und ich wenig Erfahrung habe:
Die Sidebar sieht bei mir so aus:
[code=php][<div id="sidebar">
<!--sidebar.php-->
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar() ) : ?>
<!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.
<ul><li><h2>Author</h2>
<p>A little something about you, the author. Nothing lengthy, just an overview.</p>
</li></ul>
-->
<!--recent posts-->
<h2>Recent News</h2>
<ul>
<?php get_archives('postbypost', 10); ?>
</ul>
<!--archives ordered per month-->
<h2>Archives</h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
<!--links or blogroll-->
<h2>Links</h2>
<ul><?php get_links(-1, '<li>', '</li>', ' - '); ?></ul>
<!--list of categories, order by name, without children categories, no number of articles per category-->
<h2>Topics</h2>
<ul><?php wp_list_cats('sort_column=name'); ?>
</ul>
<!--Meta Information-->
<h2>Meta</h2>
<ul>
<li><a href="http://rockinthemes.com/">RockinThemes.com</a></li>
<li><a href="http://www.nathanrice.org/">Nathan Rice</a></li>
<li><a href="http://www.envisionwebhosting.com/resources1/seo.php">Search Engine</a></li>
</ul>
<!--searchfiled-->
<h2>Search Site</h2>
<br />
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
<!--sidebar.php end-->
<?php endif; ?>
</div>/PHP]
ich würde mich sehr freuen wenn mir jemand tipps gibt.
Alles Gute und Merci
Peter