Bazı resimlerinizi özel alan ile bazıları öne çıkarılan görsel olarak ekliyorsanız veya resim yoksa başka bir görsel gösterebilirsiniz aşağıdaki kodları kullanın:
<?php if ( has_post_thumbnail() ) { $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'medium', false, '' ); $thumbnailSrc = $src[0]; ?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><img src="<?php echo $thumbnailSrc; ?>" width="300" height="150" alt="<?php the_title(); ?>" /></a>
<?php } else { ?>
<?php $resim = get_post_meta($post->ID,'resim', true);
if($resim != "") { ?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><img src="<? echo ($resim); ?>" width="300" height="150" alt="<?php the_title(); ?>" /></a>
<?php }else{ ?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><img src="http://demo.habermatik.net/v3/wp-content/themes/HaberMatikV3/images/habermatik.jpg" width="300" height="150" alt="<?php the_title(); ?>" /> </a>
<?php } ?>
<?php }?>