瞄准div的背景图像

时间:2016-07-31 11:10:39

标签: php html css

我有以下代码确定我的wordpres帖子中的最后一张图片

HTML

<?php
  preg_match_all('/src="([^"]*)"/i', get_the_content(), $images);
  echo $images[1][count($images[1])-1];
?>

我希望最后一张图片成为这个div的背景

<div id="last-img"> ... </div>

1 个答案:

答案 0 :(得分:0)

<?php
  preg_match_all('/src="([^"]*)"/i', get_the_content(), $images);
?>

<div id="last-img" style="background:url(<?php echo $images[1][count($images[1])-1] )"> ... </div>