ใน Theme จะมี functions.php ให้ก๊อปโค๊ดข้างล่าง
function get_post_image() {
global $post, $posts;
$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
$first_img = $matches [1] [0];
if(empty($first_img)){
$img_dir = get_bloginfo('template_directory');
$first_img = $img_dir . '/images/thumb.gif';
}
return $first_img;
}
/images/thumb.gif ไฟล์รูปที่อยากให้แสดงเวลาที่โพสนั้นๆ ไม่มีรูป
โค๊ดเรียกรูปมาโชว์
<img src="<?php echo get_post_image(); ?>" alt="<?php the_title(); ?>" width="130" height="130" />
1.ค๊ดชุดแรก เอาไปใส่ตรงไหนของ function.php เช่น ใส่หลัง<div class=”post-meta” id=”post-<?php the_ID(); ?>”>
2.โค๊ดชุดที่สอง เอาไปใส่ในหน้าที่ต้องการให้แสดงเช่น index.php
ชุดที่สองเอาไปใส่ในหน้าที่ต้องการดึงรูปนั้นมาแสดง เช่นหน้า index archive search พวกนี้
ส่วนหน้าแรกถ้าต้องการให้ดึงบทความตามหมวดหมู่ที่ต้องการก็ให้ใช้โค้ดนี้
<?php $a = 1; $query1 = new WP_Query();$query1->query('showposts=#&cat=*&orderby=desc'); ?><?php while ($query1->have_posts()) : $query1->the_post(); ?>
<li><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" target="_blank"><img src="<?php echo get_post_image(); ?>" alt="<?php the_title(); ?>" width="ความกว้างรูป" height="ความสูงรูป" /></a>
<div><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></div></li>
<?php endwhile; ?>
# = จำนวนบทความที่ต้องการดึง
* = เลขไอดีหมวดหมู่ของบทความที่จะดึง
ส่วนรูปแบบการแสดงลองใช้ css เข้าช่วย
หรือ
http://wordpress.org/extend/plugins/auto-post-thumbnail/