使用wordpress从帖子内容中查找第一张图片

时间:2017-12-20 11:01:19

标签: php wordpress image post preg-match-all

我正在尝试从我的每个帖子内容中获取第一张图片。下面的代码不起作用。但是,如果我有一张以上的图像,那么就会给我一张图片但最后一张图片。

我真的只想要第一张图片。

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;

}

1 个答案:

答案 0 :(得分:0)

首先,将此函数粘贴到functions.php文件中。

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;
}

完成后,您只需在循环中调用该函数即可显示帖子中的第一张图像:

<?php echo catch_that_image() ?>

这里是link