PHP 从帖子中提取第一张图片(Wordpress)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 从帖子中提取第一张图片(Wordpress)相关的知识,希望对你有一定的参考价值。

function get_image_src($posti = null) {
if (!$posti)
	global $post;
else
	$post->post_content = $posti;

$the_content = $post->post_content;
$pattern = '!<img.*?src="(.*?)"!';
preg_match_all($pattern, $the_content, $matches);
$image_src = $matches['1'][0];
return $image_src;
}

以上是关于PHP 从帖子中提取第一张图片(Wordpress)的主要内容,如果未能解决你的问题,请参考以下文章

PHP Wordpress;从帖子中获取第一张图片并显示它

PHP 从Wordpress帖子获取第一张图片

PHP Wordpress - 获取帖子的第一张图片(没有自定义字段)

PHP 从帖子中抓取第一张图片

PHP Wordpress查询从帖子/页面中提取片段

PHP Wordpress获得第一张图片