这是一个css问题,而不是wordpress的问题。html img标记中指定的维度的特定性为0,因此任何css规则都将覆盖它们。这应该可以:
.article-feature-image img {
width:100%;
max-width:650px;
height:auto;
}
作为参考,您可以使用wp\\u get\\u attachment\\u image\\u src函数获取特色图像的url属性,并手动构建img标签,而不包含高度和宽度属性:
<?php $img_url = wp_get_attachment_image_src(get_post_thumbnail_id(),\'kev-feature\'); ?>
<img src="<?php echo $img_url[0];?>"/>