So ich habe es jetzt mal so gemacht:
PHP
<center><b>NEWS</b></center>
<?php query_posts('category_name=News&showposts=5'); ?>
<?php if (have_posts()) :?>
<?php $postCount = 0; ?>
<?php $more = 1; ?>
<?php while (have_posts()) : the_post() the_content(); ?>
<center><table width="550" border="1" bordercolor="#C0C0C0" cellpadding="0" cellspacing="0" rules="cols"><tr><td>
<center><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></center></td></tr>
</table> </center>
<?php endwhile; ?>
<?php endif; ?>
</div>
Alles anzeigen
aber so klappt das nicht was mache ich falsch?