دوستان من از پوسته StyleIsle استفاده می کنم.مشکلی که با این پوسته دارم اینه که عکس مطالب رو در صفحه اول نشون نمیده در صورتی که در عکسی که از سایت قالب گذاشتم در صفحه اول عکس مطالب نشون داده می شه
http://topwpthemes.com/wp-content/uploads/2009/06/styleisle.png
منظورم اون 2تا عکس پایینه
اینم آدرس سایت من تا دقیقا منظورمو متوجه شید: http://www.parsianshops.com
اینم فایل index.php
<?php get_header(); ?>
<?php include(TEMPLATEPATH.'/includes/glide.php'); ?>
<div id="miniposts">
<?php
$odd = true;
for ($i=1;$i<=6;$i++):
$var = 'miniPost'.$i;
$miniPostCat = $Laurent->option[$var];
if($miniPostCat != 'Select a category:' && $miniPostCat != '') :
$result = new WP_Query('category_name='. $miniPostCat .'&showposts=6');
$zebra = ($odd) ? ' odd': ' even';
$odd = !$odd;
$first = true;
while ($result->have_posts()) : $result->the_post();$do_not_duplicate = $post->ID; ?>
<?php
if($first): $first = false;
$image = get_post_meta($post->ID,'thumbnail', true);
$style = ($image) ? '' : 'no-image';
?>
<div class="box-category <?php echo $zebra,' ',$style ?>"><div class="box-category-in <?php echo 'box-category-in-',$style ?>">
<h4 class="box-title">More from <?php echo $miniPostCat ?></h4>
<?php if($image): ?><img src="<?php echo $image; ?>" width="276" height="142" alt="Image of <?php the_title(); ?>" /><?php endif ?>
<div class="entry">
<?php the_content_rss('', TRUE, '', 30); ?>
</div>
<h4 class="box-more-title">More headline from <?php echo $miniPostCat ?></h4>
<ul class="more-title">
<?php else: ?>
<li><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
<?php endif ?>
<?php endwhile ?>
</ul>
<a class="read-more" href="<?php echo get_category_link(get_cat_ID($miniPostCat)) ?>" title="Read more">Read more...</a>
</div></div>
<?php endif; endfor; ?>
<div class="clear"></div>
</div><!-- /minipost -->
<?php get_sidebar(); get_footer() ?>