• hi

    i want to show medium size image

    what should i do if

    echo wp_get_attachment_image( $post->ID, 'medium' )

    doesnot echo anything in wordpress 3.0.3

    i also tried

    $medium = wp_get_attachment_image_src($picture->ID, 'medium', false);
    $med_url = $medium[0];
    $med_width = $medium[1];
    $med_height = $medium[2];

    but nothing is displayed

    vineet

The topic ‘get attachment image’ is closed to new replies.