Wordpress te post içinde
- elle yüklenmiş bir resim var ise (yani thumbnail) onu yayınlamasını,
- yok ise özel alandan eklenmiş resim varsa onu göstermesini
- oda yok ise resim basmamasını
sağlayacak döngüyü yapmaya çalışıyorum yardım edebilirseniz sevinirim. Sanırım kırmızı renk kod, o bahsettiğim elle yüklenen thumbnaili gösteriyor.
<?php if (have_posts()) : ?>
<?php $count = 0; ?>
<?php while (have_posts()) : the_post(); ?>
<?php $count++; ?>
<?php if ($count == 1) : ?>
<h1 class="topstory-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(array( 402,210 ), array( 'class' => 'img-topstory' )); ?></a>
<div style="clear: both;"></div>
<?php the_content_rss('', TRUE, '', 26); ?>
<div style="clear: both; margin: 0px 0px 20px 0px;"></div>
<h1 class="wpsn-list">More <?php single_cat_title(''); ?></h1>
<?php else : ?>
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(array( 80,80 ), array( 'class' => 'img-thumb' )); ?></a>
<h1 class="normal"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<?php the_content_rss('', TRUE, '', 21); ?>
<div style="clear: both; margin: 0px 0px 5px 0px;"></div>
<?php endif; ?>
<?php endwhile; ?>
<?php else : ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>