以下で投稿のサムネイルを取得したいのですが、サムネイルのサイズがなぜか50pxになってしまいます。
ダッシュボード>設定>メディアからサムネイルのサイズ設定を変えてもなぜか50pxのままです。
横幅は150pxになるのですが、縦幅がききません。
PCのサムネイルは <?php the_post_thumbnail( array(300,200) ); ?>により、300×200で表示できたのですが、スマホ用デザインの150pxの正方形のデザイン制御ができない状況です。
(下記に該当部分のみを公開しました。ブラウザを縮めるとモバイル版になります。
http://mosuchan123.wp.xdomain.jp/23-2-2/
PHP
1<div class="blognew"> 2 3<?php 4query_posts('posts_per_page=3'); 5if (have_posts()) : 6while (have_posts()) : 7the_post(); 8?> 9 10 11 <div class="col-md-4"> 12 <article id="post-<?php the_ID(); ?>" <?php post_class('news'); ?>> 13 <div class="news_pic"> 14 <a href="<?php the_permalink(); ?>"> 15 <?php the_post_thumbnail('thumbnail'); ?> 16 17 </a> 18 </div> 19 <div class="news_meta"> 20 21<div class="blogcat"> 22<span class="blogcatmoji"> 23<?php the_category(); ?></span> 24 25 </div> 26<div class="bloginfo"> 27 <time class="news" datetime="<?php the_time('Y-m-d'); ?>"><?php the_time('Y年m月d日'); ?></time> 28 <span class="blogtitle"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></span> 29 </div> 30 </div> 31 32 33 </article> 34 </div> 35 <?php endwhile; ?> 36 37 <?php endif; wp_reset_query(); ?> 38 </div>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/08/26 01:52