wp_get_attachment_imageで元画像を取得したい場合

wp_get_attachment_imageを使ってカスタムフィールドから画像を取り出す時、
そのままだとサムネイル画像が取り出される。うざい。

元々の画像を取り出したい場合は

$image = wp_get_attachment_image(get_post_meta($post->ID,"カスタムフィールドの名称",true),’full’);

とすればよい。最後のfullが重要。