ภาพ thumnail ที่ควรจะแสดงในแต่ละโพสต์ไม่แสดงครับ มีแค่หัวข้อกับรายละเอียดของแต่ละโพสต์เท่านั้น ไม่รู้ว่าสคริปนี้ผิดตรงไหน รบกวนด้วยครับ
<?php while (have_posts()) : the_post(); ?>
<div class="post-alt blog" id="post-<?php the_ID(); ?>">
<?php if ( !get_option('resize') ) { if ( get_post_meta($post->ID, 'image', true) ) { ?> <!-- DISPLAYS THE IMAGE URL SPECIFIED IN THE CUSTOM FIELD -->
<img src="<?php echo bloginfo('template_url'); ?>/thumb.php?src=<?php echo get_post_meta($post->ID, "image", $single = true); ?>&h=57&w=100&zc=1&q=80" alt="<?php the_title(); ?>" class="th" />
<?php } else { ?> <!-- DISPLAY THE DEFAULT IMAGE, IF CUSTOM FIELD HAS NOT BEEN COMPLETED -->
<img src="<?php bloginfo('template_directory'); ?>/images/no-img-thumb.jpg" alt="" class="th" />
<?php } } ?>
<h2><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<p class="post_date">Posted on <?php the_time('d F Y'); ?>. <span class="singletags"><?php if (function_exists('the_tags')) { ?><?php the_tags('Tags: ', ', ', ''); ?><?php } ?></span></p>
<div class="entry">
<?php the_content('<span class="continue">Read the full story</span>'); ?>
</div>
<p class="posted">Posted in <?php the_category(', ') ?><span class="comments"><?php comments_popup_link('Comments (0)', 'Comments (1)', 'Comments (%)'); ?></span></p>
</div><!--/post-->