网站地图    收藏   

主页 > 后端 > wordpress教程 >

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

来源:自学PHP网    时间:2014-11-28 23:42 作者: 阅读:

[导读] 首先在当前模板中的function php中写入:functioncatch_that_image(){global$post,$posts;$first_img= 39; 39;;ob_start();ob_end_clean()...

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

首先在当前模板中的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

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

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论