Hi,
ich möchte auf meiner Seite kleine News anzeigen lassen und habe mir unten stehenden Code eingebaut (sidebar.php), funktioniert auch soweit, nur werden jetzt auch die News zusätzlich im Content gezeigt die angelegten Texte sind weg und auf jeder Seite erscheinen nun die "short news" 2x.
muss der Code woanders rein? Bin Anfänger, meine erste Seite, gesucht habe ich schon finde aber nichts.
Oder gibt es ein Plugin?
PHP
<?php query_posts((array('orderby' => 'rand', 'showposts' => 5)));?>
<?php if (have_posts()): ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<small>Am <?php the_time(__('d.m.Y')) ?> von <?php the_author() ?></small>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute('echo=0'); ?>"><?php the_title(); ?></a></h2>
<?php the_excerpt()?>
</div>
<?php endwhile;?>
<?php else :?>
<?php endif;?>
Alles anzeigen