カスタムフィールドプラグインで「Custom Field Suite」画像を表示方法です。
・フィールドタイプは「ファイルのアップロード」
・返り値は「添付ファイルID」
・hogehogeにはカスタムフィールドの名前を入れる
・fullは画像の大きさ
出力したい場所に貼り付け
1 |
<?php echo wp_get_attachment_image(post_custom('hogehoge'),'full); ?> |
functions.phpに下記を追加
1 2 3 4 5 6 7 |
<?php /** *画像センター合わせで切り抜き **/ add_image_size( 'img01', 500, 260, true ); /** ?> |
出力したい場所に貼り付け
1 |
<?php echo wp_get_attachment_image(post_custom('image_photo'),'img01'); ?> |