[WP] Code Schreibweise: Warum funktioniert post_thumbnail funktioiniert hier nicht?

G

Gast170816

Hallo,

Wordpress scheint ja hier nicht so populär zu sein, nunja aber vielleicht kann ein Auskenner auf den ersten Blick erkennen, warum mein folgender Code nicht funktioniert (Schreibweise und so korrekt?!)...es kommt das "Thumbnail" nur das erste und das letzte...evtl ist irgendwas in der falschen Reihenfolge geschrieben (die <li> sind jedoch eigentlich copy-paste immer die gleichen):

PHP:
<div>
            <div class="main-txt">
						  <?php query_posts('p=1'); ?>
						  <?php while (have_posts()) : the_post(); ?>
						  <h4><?php the_title(); ?></h4>
						  <?php the_content(); ?>
						</div>
						<div class="main-img">
						  <?php the_post_thumbnail(); ?>		
						<?php endwhile;?>
						</div><!-- .main -->
						<ul class="sub">
						  <li>
						    <?php query_posts('p=2'); ?>
						    <?php while (have_posts()) : the_post(); ?>
						      <?php the_post_thumbnail(); ?>
						      <h4><?php the_title(); ?></h4>
						      <?php the_content(); ?>			
						    <?php endwhile;?>
					   </li>
					   <li>
						    <?php query_posts('p=3'); ?>
						    <?php while (have_posts()) : the_post(); ?>
						      <?php the_post_thumbnail(); ?>
						      <h4><?php the_title(); ?></h4>
						      <?php the_content(); ?>			
						    <?php endwhile;?>
					   </li>
					   <li>
						    <?php query_posts('p=4'); ?>
						    <?php while (have_posts()) : the_post(); ?>
						      <?php the_post_thumbnail(); ?>
						      <h4><?php the_title(); ?></h4>
						      <?php the_content(); ?>			
						    <?php endwhile;?>
					   </li>
					   <li>
						    <?php query_posts('p=5'); ?>
						    <?php while (have_posts()) : the_post(); ?>
						      <?php the_post_thumbnail(); ?>
						      <h4><?php the_title(); ?></h4>
						      <?php the_content(); ?>			
						    <?php endwhile;?>
					   </li>
					  </ul> <!-- .sub -->
</div>

Code ist immer derselbe, aber warum kommt bei Post "p=2" bis "p=4" kein Bild? (Im Backend sind natürlich welche definiert und Text und so kommt bei allen korrekt).
 

Neue Beiträge

Zurück