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

如何获取文章的第一张图片

发布:smiling 来源: PHP粉丝网  添加日期:2014-05-24 13:50:42 浏览: 评论:0 

首先在当前模板中的function.php中写入:

  1. function catch_that_image() { 
  2.   global $post$posts
  3.   $first_img = ''
  4.   ob_start(); 
  5.   ob_end_clean(); 
  6.   $output = preg_match_all('//i'$post->post_content, $matches); 
  7.   $first_img = $matches [1] [0]; 
  8.  
  9.   if(emptyempty($first_img)){ //Defines a default image 
  10.     $first_img = "/images/default.jpg"
  11.   } 
  12.   return $first_img

然后在需要调用的地方写上.

Tags: 获取文章 第一张图片

分享到: