当前位置:首页 > CMS教程 > WordPress > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2014-03-24 08:31:38 浏览: 评论:0 

因为要改版一个功能希望取文章中所有图片中的第一张图片作为缩略图了,下面我就来给各位同学分享一个我整理了函数,希望对大家有帮助,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.phpfensi.com 
  13.  return $first_img

Tags: wordpress 函数 地址 文章

分享到: