【发布时间】:2019-06-02 16:26:27
【问题描述】:
使用样式 attr 显示特色图像但图像的高度似乎为 0,图像似乎已加载但高度为 0,当我检查时缺少整个 css 代码
<?php $featured = wp_get_attachment_image_src(get_post_thumbnail_id(), 'full' ); ?>
<?php $featured = $featured[0]; ?>
<div class="featuredImage" style="background-image:url(<?php echo $featured ?>);"></div>
</header>
@media only screen and (min-width: 768px) {
.div featuredImage{
height: 300px;
width: 100%;
}
}
【问题讨论】:
标签: wordpress html custom-wordpress-pages