在嵌入式CSS中使用网址时,网址会自动间隔

时间:2019-07-15 07:39:32

标签: php wordpress url

我遇到了一个问题。我已经在内联CSS中使用过wp get_the_post_thumbnail_url(),但是它无法正常工作。 URL的斜杠由空格组成。

if ( has_post_thumbnail() ) { 
                            $startnext_features_box_markup .='
                            <div class="single-repair-services" style="background-image: url("'.get_the_post_thumbnail_url().'");">';

显示的结果 enter image description here

1 个答案:

答案 0 :(得分:0)

尝试编辑后的代码

if ( has_post_thumbnail() ) { 
    $image = get_the_post_thumbnail_url();

    $startnext_features_box_markup .='
    <div class="single-repair-services" style="background-image: url(\''.$image.'\');">';