この記事は公開から1年以上前のものです。
内容が古く、現在では推奨されていない方法の可能性もありますのでご注意ください。
内容が古く、現在では推奨されていない方法の可能性もありますのでご注意ください。
WordPressのプラグインAdvanced Custom Fieldsで画像を出力するためのメモ。
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<?php $attachment_id = get_field('sample_img');//フィールド名 $size = "thumbnail"; // (thumbnail, medium, large, full or custom size) $image = wp_get_attachment_image_src( $attachment_id, $size ); $attachment = get_post( get_field('image') ); $alt = get_post_meta($attachment->ID, '_wp_attachment_image_alt', true); $image_title = $attachment->post_title; ?> <?php if(get_field("sample_img")): ?> <img src="<?php echo $image[0]; ?>" width="<?php echo $image[1]; ?>" height="<?php echo $image[2]; ?>" alt="<?php echo $alt; ?>" title="<?php echo $image_title; ?>" class="img_left" /> <?php else : ?> <?php endif; ?> |