WordPress的图片博客文章缩略图高度拉伸显示问题

时间:2018-08-28 12:18:51

标签: wordpress post stretch

我的wordpress博客文章缩略图中有问题。高度是拉伸的,我是css高度:auto;但仍然无法达到预期的效果。

screenshot

.post-image img {
	height: auto;
}
<?php if(has_post_thumbnail()) { //check for feature image ?>

		<div class="post-image">
			<?php the_post_thumbnail(); ?>
		</div><!---end post image--> 
		
<?php } ?>

1 个答案:

答案 0 :(得分:0)

使用<?php the_post_thumbnail(array(200x200)); ?>
使用数组添加高度和宽度以应用于图像。
仍未解决,则CSS来自任何父结构。