【发布时间】:2017-12-20 11:01:19
【问题描述】:
我正在尝试从我的每个帖子内容中获取第一张图片。下面的代码不起作用。但是,如果我有多个图像,则给我一个图像,但最后一个图像。
我真的只想要第一张图片。
function catch_that_image($post_content) {
$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post_content, $matches);
$first_img = $matches [1] [0];
return $first_img;
}
【问题讨论】:
标签: php wordpress image post preg-match-all