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

Posted

tags:

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

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

and

<?php echo catch_that_image() ?>

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

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

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

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

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

php 从WordPress帖子中获取第一段。

php 从WordPress帖子获取第一段。