帖子缩略图未显示正确的大小

时间:2018-07-26 作者:sonja

我创建了一个自定义模板。它包含3列,中间的列应该只显示文章缩略图。但无论我设置的是什么大小属性,它都不会以我想要的方式更改大小。我想让图片占据该专栏的大部分空间。

    <div class="col-lg-4">
       .. first column with some content
    </div><!-- col-lg-4 -->

     <div class="col-lg-4"> 
       <?php
        //post_thumbnail
        if (!empty(get_the_post_thumbnail())) : ?>
           <?php the_post_thumbnail(array(360,466), array( \'class\' => \'aligncenter\'));
        endif; ?>

     </div><!-- col-lg-4 -->
     <div class="col-lg-4">
         third column with some content..
    </div><!-- col-lg-4 -->
无论我把什么尺寸作为一个尺寸(我也尝试了“中”、“满”等),它都保持与下图中相同的尺寸:enter image description here

知道我的问题在哪里吗?

EDIT

当我简单地添加

if (!empty(get_the_post_thumbnail())) : ?>
                <?php the_post_thumbnail();
            endif; ?>
或添加任意大小(缩略图、中间、大)。这不会改变任何事情。。

2 个回复
最合适的回答,由SO网友:Quang Hoang 整理而成

You can edit css?

img{
   display: block;
   width: 100%;
   height: auto;
   max-width: 100%;
}
SO网友:Trilok

添加后add_image_size( \'book-image\', 360, 466, true ); 尝试这样调用\\u post\\u缩略图:也可以重新整理缩略图

the_post_thumbnail( \'book-image\' ); 

结束

相关推荐

Issue uploading images

我从来没有遇到过图像问题,但现在新上传的图像突然显示出损坏的图像图标,当我继续插入它时,我在帖子中看到了损坏的图像。以下是屏幕截图:Issue details:1) 前端上的图像不显示为内联图像,它们仅显示为附件。2) 此问题仅在主站点上存在,所有子站点上的图像都可以正常工作I tried to resolve the issue by doing following things with no success:1) 切换回默认主题2)禁用所有插件以查看if3)试图重置永久链接时出现冲突有人能帮忙吗?P