wordpress カスタム投稿 サムネイル表示
・functions.php
add_theme_support('post-thumbnails'); // カスタムサイズ add_image_size('mysize' ,100, 100 ,true );
・ビュー
<?php echo wp_get_attachment_image(get_post_meta($post->ID, 'フィールド名'), 'mysize'); ?>
・functions.php
add_theme_support('post-thumbnails'); // カスタムサイズ add_image_size('mysize' ,100, 100 ,true );
・ビュー
<?php echo wp_get_attachment_image(get_post_meta($post->ID, 'フィールド名'), 'mysize'); ?>