How to show the featured image

Discussion in 'WordPress' started by DOWNLOADBAZAR, Feb 11, 2011.

  1. #1
    Can Any Body Tell ME that How to add thumbnail which will be shown on main page i try alot but my pics are not show on main page
     
    DOWNLOADBAZAR, Feb 11, 2011 IP
  2. sarahk

    sarahk iTamer Staff

    Messages:
    28,846
    Likes Received:
    4,542
    Best Answers:
    123
    Trophy Points:
    665
    #2
    You need to add this line to your functions.php file

    add_theme_support( 'post-thumbnails' );
    Code (markup):
    and then you need to use this within your index.php (etc) to show the image

    echo get_the_post_thumbnail($post->ID, 'thumbnail', $thumbnail_attr);
    Code (markup):
     
    sarahk, Feb 12, 2011 IP