从帖子中提取第一张图片(Wordpress)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从帖子中提取第一张图片(Wordpress)相关的知识,希望对你有一定的参考价值。
function get_image_src($posti = null) { if (!$posti) global $post; else $post->post_content = $posti; $the_content = $post->post_content; $pattern = '!<img.*?src="(.*?)"!'; $image_src = $matches['1'][0]; return $image_src; }
以上是关于从帖子中提取第一张图片(Wordpress)的主要内容,如果未能解决你的问题,请参考以下文章