尝试使用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' } ?>;
答案 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";
} ?>;
引号错误,分号丢失。