Guten Morgen,
ist es möglich die Loop umzusschreiben damit man den Post aus einer bestimmten Kategorie ausgibt ?
Ich habe schon sämtliche Sachen versucht nur bin ich zu blöd es mit der Loop zu machen da hab ich keinen Plan von
wie ich es umschreiben soll.
Meine Loop sieht so aus:
<div id="loopausgabe2">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="entry">
<div id="thumbnail"><?php the_post_thumbnail('medium'); ?></div>
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<h4><?php the_date('D. j. F Y'); ?> | <?php the_author(); ?></h4>
<div id="text"><?php the_content('<span class="moretext">weiterlesen...</span>'); ?></div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
Liebe Grüße
stianfx