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