我试图将背景图像设置为特征图像,因此我使用background-size:cover
. 下面是我已经完成的代码,但如何将功能图像添加到<div class="bg-img" style="background:...">
. 如何实现背景图像技术。
if ( $post->post_parent )
$post_id = $post->post_parent;
else
$post_id = $post->ID;
if ( $thumbnail = get_the_post_thumbnail( $post_id, \'post-thumbnail\' ) ) {
echo $thumbnail;
}