且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何获取WordPress发布精选图片网址

更新时间:2023-11-27 19:28:52

检查下面的代码,让我知道它是否对您有用.

Check the code below and let me know if it works for you.

<?php if (has_post_thumbnail( $post->ID ) ): ?>
  <?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); ?>
  <div id="custom-bg" style="background-image: url('<?php echo $image[0]; ?>')">

  </div>
<?php endif; ?>