首页 > CMS > Wordpress > 正文

wordpress取得文章中第一张图片url地址的函数

2024-09-07 00:50:32
字体:
来源:转载
供稿:网友

因为要改版一个功能希望取文章中所有图片中的第一张图片作为缩略图了,下面我就来给各位同学分享一个我整理了函数,希望对大家有帮助,wordpress取得文章中第一张图片url,代码如下:

  1. function catch_that_image() { 
  2.  global $post$posts
  3.  $first_img = ''
  4.  ob_start(); 
  5.  ob_end_clean(); 
  6.  $output = preg_match_all('/<img.+src=['"]([^'"]+)['"].*>/i', $post->post_content, $matches); 
  7.  $first_img = $matches [1] [0]; 
  8.  
  9.  // no image found display default image instead 
  10.  if(emptyempty($first_img)){ 
  11.   $first_img = "/images/default.jpg"
  12.  } www.Vevb.com 
  13.  return $first_img

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表