how to add thumbnail in WordPress homepage post
Wednesday, April 7th, 2010This tutorial explain on how to add thumbnails in your wordpress homepage post. Heres how: 1. Back up your theme files 2. In your theme files open home.php or index.php 3. Fine this line : <?php while (have_posts()) : the_post(); ?> … <?php endwhile; ?> Inserted ANYWHERE with in the while loop above of your theme: <img src=”<?php echo get_post_meta($post->ID, ”thumbnail”, true);?>” /> This outputs an image, using [...]
>>read more

