添付画像を表示する

ループの中では、アイキャッチ画像をアイコンのように表示することがよくあると思いますが、

添付画像を表示したいといった場合に、使用できます

$images= get_children( 'post_type=attachment&post_mime_type=image&numberposts=1&post_parent='.$post->ID );

if( ! empty( $images) && is_array($images) ){
 echo wp_get_attachment_image( key( $images ), array(50,50) );
}

[emulsion_relate_posts]