IDから画像を取得して表示最初はカスタムフィールドの値をそのままテキストとして投稿本文末尾に表示していましたが、そこを変更します。 カスタムフィールドの値をIDとして画像を取得し、imgタグで表示します。 // 投稿内容の末尾にカスタムフィールドの内容を追加 add_filter('the_content', 'add_imagefield_content', 1); function add_imagefield_content($content) { $id = get_post_meta(get_the_ID(), 'imagefield', true); if ($image = wp_get_attachment_image($id, 'large')) { $content .= '<h2>Imagefield</h2>'; $content .= $image; } retu