简体   繁体   English

如何在 wordpress 的背景图像中使用帖子缩略图 url?

[英]how to use post thumbnail url in background image in wordpress?

I'm using this code.我正在使用这段代码。

<div class="bg-img1 size-a-3 how1 pos-relative" style="background-image: url();">

At this time how to get the post thumbnail url in background image?这时候如何获取背景图片中的帖子缩略图 url?

The code should be like following,代码应如下所示,

<div class="bg-img1 size-a-3 how1 pos-relative" style="background-image: url(<?php the_post_thumbnail_url(); ?>);">

And if you want to get post thumbnail from a specific post/page using post ID it will be like following,如果您想使用帖子 ID 从特定帖子/页面获取帖子缩略图,则如下所示,

<div class="bg-img1 size-a-3 how1 pos-relative" style="background-image: url(<?php echo get_the_post_thumbnail_url($post_id); ?>);">

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM