Hallo verstehe das nun echt nicht.
Hab follgendes getippt
PHP
<ul id="reiter" onMouseOut="hoverMainMenu('orange');">
<?php query_posts('cat=1'); ?>
<?php while (have_posts()) : the_post(); ?>
<li class="blau"><?php the_category(); ?></li>
<?php endwhile; ?>
<?php query_posts('cat=14'); ?>
<?php while (have_posts()) : the_post(); ?>
<li class="gruen"><?php the_category(); ?></li>
<?php endwhile; ?>
<?php query_posts('cat=15'); ?>
<?php while (have_posts()) : the_post(); ?>
<li class="orange"><?php the_category(); ?></li>
<?php endwhile; ?>
</ul>
</div>
Alles anzeigen
Es sollen also drei Katergorien Namen angezeigt werden.
In der ersten Category hab ich zwei Post, und der Name der Category wird nun zweimal ausgspuckt. Das verstehe ich nicht und das will ich nicht!?
Begreift das jemand?