这条线有什么问题?设置动态网址背景

时间:2014-05-29 17:23:13

标签: php html css wordpress

尝试使用php在Word中动态添加背景,使用Wordpress帖子图片。

background: <?php if(has_post_thumbnail()){ 
                $img = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'destacados');
                echo 'url(".$img['0'].") no-repeat center'  } ?>;

1 个答案:

答案 0 :(得分:1)

background: <?php if(has_post_thumbnail()){ 
                $img = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'destacados');
                echo "url('".$img['0']."') no-repeat center";
             } ?>;

引号错误,分号丢失。