我正在使用以下代码将我的帖子特色图片设置为background-image
…
<?php if (has_post_thumbnail( $post->ID ) ):
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), \'single-post-thumbnail\' );
endif; ?>
如何添加else语句,以便在帖子没有特色图片时使用特定图片
/images/featured.jpg
例如