Nee sorry, dein Code bewirkt einfach gar nix... :(
Hier der komplette Code meiner loop-index.php
PHP
<h3 class="page-title">Aktuelle Neuigkeiten</h3>
<?php query_posts('cat=5&showposts=8'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="newsbox">
<div class="news_img"><a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a></div>
<h3 class="news_title"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
<div class="news_ex"><?php the_excerpt('read more'); ?></div>
<ul><li class="news_com"><?php comments_popup_link('kommentieren','1 Kommentar', '% Kommentare'); ?></li></ul>
</div>
<?php endwhile;?>
Alles anzeigen
Er zeigt folglich alle Artikel der Kategorie "News" (die Kategorie die nicht mit als Icon angezeigt werden soll)
Nun sollen eben max. 8 Icons angezeigt werden... je nach dem welche Kategorie ausgewählt ist... (Außer "News" ^^)
Jemand eine Idee? :(