一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

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

时间:2014-03-17 编辑:简简单单 来源:一聚教程网

wordpress取得文章中第一张图片url:

 代码如下 复制代码

function catch_that_image() {
 global $post, $posts;
 $first_img = '';
 ob_start();
 ob_end_clean();
 $output = preg_match_all('//i', $post->post_content, $matches);
 $first_img = $matches [1] [0];
 
 // no image found display default image instead
 if(empty($first_img)){
  $first_img = "/images/default.jpg";
 } www.111com.net
 return $first_img;
}

热门栏目