このような形でカスタムフィールドは記述しています。場所は
content.phpの<?php endif; // is_single() ?>
の後に挿入しています。
<?php
$attachment_id = get_field('photo');
$size = "large"; // (thumbnail, medium, large, full or custom size)
$image = wp_get_attachment_image_src( $attachment_id, $size );
$attachment = get_post( get_field('photo') );
$alt = get_post_meta($attachment->ID, ‘_wp_attachment_image_alt’, true);`
$image_title = $attachment->post_title;
?>
<a href="<?php echo wp_get_attachment_url( get_fiel
( ‘photo’,$post->ID) ); ?>” rel=”lightbox”><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; ?>” /></a>`
<br/><br/>
<p><?php the_field('text',$post->ID); ?></p>
ファイルのバックアップは、
FTPで直接DLした中身全部と、管理画面からエクスポートしたXMLしかないのですが、
これで大丈夫でしょうか?