【问题标题】:how to use post thumbnail url in background image in wordpress?如何在wordpress的背景图像中使用帖子缩略图网址?
【发布时间】: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


    【解决方案1】:

    代码应如下所示,

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

    【讨论】:

      猜你喜欢
      • 2016-04-06
      • 2011-03-15
      • 1970-01-01
      • 2014-03-12
      • 2013-07-17
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多