我有以下代码确定我的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>
答案 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>