我正在尝试为我的WordPress网站设置功能图像。但即使所有图像都具有相同的宽度。它们的高度不同,导致3个物品网格下面的3个物品不直,因为前3个物品的高度不同。有什么我可以写在functions.php上可以帮助解决这个问题吗?非常感谢。
答案 0 :(得分:0)
您可以使用WordPress CROP
功能设置缩略图图像。
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 150, 150 );
答案 1 :(得分:0)
您可以使用精选(缩略图)图像作为背景图像。例如,
<style>
.post-thumbnail-img {
background-size:cover;
background-repeat: no-repeat;
background-position: center center;
height: 300px;
width:100%;}
</style>
<div class="post-thumbnail-img" style="background-image: url('<? echo the_post_thumbnail_url();?>')">
</div>