首页 > 解决方案 > 如何在wordpress的背景图像中使用帖子缩略图网址?

问题描述

我正在使用这段代码。

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

这时候如何获取背景图片中的post thumbnail url?

标签: phpwordpressbackground-imagethumbnails

解决方案


代码应如下所示,

<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); ?>);">

推荐阅读