hello , am using Gamezine template
and working Great , but i change the layout
http://www.khabar3ajel.com < my website
if you check the link you can see thumbnail image for each topic
well , lets go to this link http://www.khabar3ajel.com/star-news
the archive of the topics ( that appear in index ) there are no thumbnail for the topics
can any one help ?
here is my index.php
<?php get_header(); ?>
<?php
if (is_home()) {
query_posts("cat=-1,-3,-5,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-64");
}
?>
<div id="content">
<?php include (TEMPLATEPATH . '/glide.php'); ?>
<div id="myslides">
<?php include (TEMPLATEPATH . "/slide.php"); ?>
</div>
<?php include (TEMPLATEPATH . "/tab.php"); ?>
<div id="lpst"></div>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<?php $screen = get_post_meta($post->ID,'screen', true); ?>
<img src="<?php echo ($screen); ?>" width="80" height="55" alt="" />
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="date"> <span class="authr"> كتبهُ <?php the_author(); ?></span> </div>
<div class="mentry">
<?php the_excerpt(); ?>
<div class="clear"></div>
</div>
<div class="postinfo">
<div class="time"><?php the_time('F - j - Y'); ?> </div>
<div class="rmore"><a href="<?php the_permalink() ?>">إقرأ المزيد</a> </div>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('المواضيع السابقة »') ?></div>
<div class="alignright"><?php previous_posts_link('«المواضيع الجديدة') ?></div>
</div>
<?php else : ?>
<div class="post">
<h1 class="title">غير موجود</h1>
<p>أسف, لكنك تبحث عن شيء غير موجود هنا.</p>
</div>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
and my archive.php
<?php get_header(); ?>
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2><img src="<?php echo ($screen); ?>" width="80" height="55" alt="" />
<div class="date"> <span class="authr"> كتبهُ <?php the_author(); ?></span> </div>
<div class="mentry">
<?php the_excerpt(); ?>
<div class="clear"></div>
</div>
<div class="postinfo">
<div class="time"><?php the_time('F - j - Y'); ?> </div>
<div class="rmore"><a href="<?php the_permalink() ?>">إقرأ المزيد</a> </div>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('المواضيع السابقة »') ?></div>
<div class="alignright"><?php previous_posts_link('«المواضيع الجديدة') ?></div>
</div>
<?php else : ?>
<div class="post">
<h1 class="title">غير موجود</h1>
<p>أسف, لكنك تبحث عن شيء غير موجود هنا.</p>
</div>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
</td>
</tr>
</table>