PHP
<?php //Stadt1 Sport
$recent = new WP_Query("cat=3,74");
[COLOR="Red"]if ($recent->have_posts()) : [/COLOR]?>
<h5 class="archive">Sport</h5>
<?php
while($recent->have_posts()) : $recent->the_post();
static $counter = 0;
if ($counter == "5") { break; }
else {
if (in_category(3) && in_category(74)) { ?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div class="innerfloat">
<?php the_content(); ?>
</div>
<p><hr></p>
<?php $counter++;
};
}; ?>
<?php endwhile;
[COLOR="#ff0000"]endif;[/COLOR]
?>
Alles anzeigen