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

Posted

tags:

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

  1. function get_image_src($posti = null) {
  2. if (!$posti)
  3. global $post;
  4. else
  5. $post->post_content = $posti;
  6.  
  7. $the_content = $post->post_content;
  8. $pattern = '!<img.*?src="(.*?)"!';
  9. preg_match_all($pattern, $the_content, $matches);
  10. $image_src = $matches['1'][0];
  11. return $image_src;
  12. }

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

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

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

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

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

在 Jekyll 中,我如何获取帖子的第一张图片?

从特定的 Wordpress 类别中提取帖子