我正在尝试为我的WordPress站点设置功能图像。然而,即使所有的图像都具有相同的宽度。它们的高度不同,导致3篇文章网格下面的3篇文章不是笔直的,因为前3篇文章的高度不同。有什么我可以在functions.php上写的东西可以对此有所帮助吗?非常感谢。
发布于 2017-08-18 10:17:37
您可以使用特色(缩略图)图像作为背景图像。例如,
<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>发布于 2017-08-17 22:44:54
您可以使用WordPress CROP函数设置缩略图。
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 150, 150 );https://stackoverflow.com/questions/45738152
复制相似问题