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