Hallo,
dies ist mein erstes gepostetes "Wordpress"-Problem und ich hoffe, Ihr könnt mir helfen. Vorweg: Ich bin absoluter Neuling und habe ziemlich wenig Ahnung.
Bei meiner Seite scheint die Kommunikation zwischen den Linkkategorien und der Darstellung auf meiner Seite nicht richtig zu funktionieren. Neu erstellte Linkkategorien werden nicht dargestellt. Hier hab ich Euch mal den Code der sidebar.php meines themes:
<!-- begin sidebar -->
<div id="menu">
<div id="nav">
<li id="search">
<h4><label for="s"><?php _e('Search:'); ?></label> </h4>
<form id="searchform" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<div>
<input type="text" name="s" id="s" size="15" /><br />
<input type="submit" value="<?php _e('Search Blog'); ?>" />
</div>
<?php
$link_cats = $wpdb->get_results("SELECT cat_id, cat_name FROM $wpdb->linkcategories");
foreach ($link_cats as $link_cat) {
?>
<h4>Blogroll:</h4>
<ul>
<?php wp_get_links($link_cat->cat_id); ?>
</ul>
<?php } ?>
<li id="categories"><h4>categories</h4>
<ul>
<?php wp_list_cats(); ?>
</ul>
<li id="archives"><h4>archives:</h4>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>
<li id="meta"><h4><?php _e('Meta:'); ?></h4>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="feed:<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<li><a href="feed:<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS'); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<li><a href="http://validator.w3.org/check/referer" title="<?php _e('This page validates as XHTML 1.0 Transitional'); ?>"><?php _e('Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>'); ?></a></li>
<li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
<li><a href="http://wordpress.org/" title="<?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.'); ?>"><abbr title="WordPress">WP</abbr></a></li>
<?php wp_meta(); ?>
<br />
</ul>
</li>
</form>
</div>
</div>
<!-- end sidebar -->
Komischerweise erscheint die Überschrift "Blogroll:" auch zweimal auf der Seite...
Ich wäre Euch sehr dankbar für Eure Hilfe.
Alles Liebe
linnyblom