简体   繁体   中英

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?

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,

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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