URL 在内联 CSS 中使用时采用自动间距

我遇到了一个问题。我在内联 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().'");">';

结果显示

http://img4.mukewang.com/616047d50001577009600079.jpg

Smart猫小萌
浏览 173回答 1
1回答

蛊毒传说

试试这个编辑过的代码if ( has_post_thumbnail() ) {&nbsp;&nbsp; &nbsp; $image = get_the_post_thumbnail_url();&nbsp; &nbsp; $startnext_features_box_markup .='&nbsp; &nbsp; <div class="single-repair-services" style="background-image: url(\''.$image.'\');">';
打开App,查看更多内容
随时随地看视频慕课网APP