Czemu jak wpisuje np:ten kod z ostatnich wpisów na stronie się nic nie wyświetla
<?php
//Set the initial count outside of the loop.
$count = (int)0;
//Start the post loop
while (have_posts()) : the_post();
?>
<h2>My featured posts:</h2>
<ul class="thumbnails">
<?php
//Set the span to our default span12
$span = 'col-md-6';
//If the count is 2 or 3 change span to be span3. You can put whatever conditions you want here
if($count == 2 || $count == 3){
$span = 'col-md-3';
}
//If the count is equal to 3 or higher (which it should not be) then reset the count to 0
if($count >= 3){
$count = 0;
}
//If its not 3 or higher, increase the count
else{
$count++;
}
?>
<li class="<?php echo $span; ?>">
<a class="thumbnail" href="<?php the_permalink(); ?>">
<?php the_post_thumbnail(); ?>
</a>
</li>
<?php
//End the post loop
endwhile; else:
?>