【发布时间】:2020-03-15 04:33:46
【问题描述】:
我正在使用此代码。
<div class="bg-img1 size-a-3 how1 pos-relative" style="background-image: url();">
此时如何获取背景图片中的post thumbnail url?
【问题讨论】:
标签: php wordpress background-image thumbnails
我正在使用此代码。
<div class="bg-img1 size-a-3 how1 pos-relative" style="background-image: url();">
此时如何获取背景图片中的post thumbnail url?
【问题讨论】:
标签: php wordpress background-image thumbnails
代码应如下所示,
<div class="bg-img1 size-a-3 how1 pos-relative" style="background-image: url(<?php the_post_thumbnail_url(); ?>);">
如果您想使用帖子 ID 从特定帖子/页面获取帖子缩略图,则如下所示,
<div class="bg-img1 size-a-3 how1 pos-relative" style="background-image: url(<?php echo get_the_post_thumbnail_url($post_id); ?>);">
【讨论】: