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.
<?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; ?>')"> </div> <?php endif; ?>
以上是关于Wordpress-获取特色图片url的主要内容,如果未能解决你的问题,请参考以下文章
markdown 如何获取所有WordPress特色图像大小及其URL