Wordpress-获取特色图片url

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress-获取特色图片url相关的知识,希望对你有一定的参考价值。

This code will retrieve the url of a featured image in order to use it as a background.
  1. <?php if (has_post_thumbnail( $post->ID )) : ?>
  2. <?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); ?>
  3. <div id="custom-bg" style="background-image: url('<?php echo $image; ?>')">
  4.  
  5. </div>
  6. <?php endif; ?>

以上是关于Wordpress-获取特色图片url的主要内容,如果未能解决你的问题,请参考以下文章

markdown 如何获取所有WordPress特色图像大小及其URL

PHP PHP WP WordPress获取特色图片后缩略图

Wordpress - 短 mp4 视频而不是特色图片

WordPress获取文章特色图像路径函数

WordPress 自定义帖子类型前端特色图片提交

在静态 html 页面上显示最新的 wordpress 特色图片