関数リファレンス/get post meta - WordPress Codex 日本語版 カスタムフィールドに key を image として登録した画像を呼び出す。 Function Reference/wp get attachment image « WordPress Codex 呼び出せるのは ID なので添付されてる画像を呼び出す。 サイズやアトリビュートを指定可能。
wp_get_attachment_image( $attachment_id, $size, $icon, $attr );
$size = thumbnail, medium, large or full
$default_attr = array(
'src' => $src,
'class' => "attachment-$size",
'alt' => trim(strip_tags( get_post_meta($attachment_id, '_wp_attachment_image_alt', true) )),
'title' => trim(strip_tags( $attachment->post_title )),
);
サンプル(ループ内で呼び出す)
ID, thumb, true),full);?>