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

Posted

tags:

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

// function
function catch_that_image() {
  global $post, $posts;
  $first_img = '';
  ob_start();
  ob_end_clean();
  $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
  $first_img = $matches [1] [0];

  if(empty($first_img)){ //Defines a default image
    $first_img = "/images/default.jpg";
  }
  return $first_img;
}

//template tag
<?php echo catch_that_image() ?>

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

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

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

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

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

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

根据大小从文件夹中抓取图像