我有这个代码可以检测Wordpress帖子中图像中的最后一张图像
我想改变它,将div#up-arrow放在最后一张图像上。
HTML
<?php
preg_match_all('/(<img [^>]*>)/', get_the_content(), $images);
for( $i=0; isset($images[1]) && $i < count($images[1]); $i++ ) {
if ($i == end(array_keys($images[1]))) {
echo sprintf('<div id="last-img">%s</div>', $images[1][$i]);
continue;
}
echo $images[1][$i];
}
?>
CSS
#up-arrow { position: absolute; z-index: 10; }
答案 0 :(得分:1)