在博客文章中找到第一张图片并将其作为缩略图返回

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在博客文章中找到第一张图片并将其作为缩略图返回相关的知识,希望对你有一定的参考价值。

This will find the first image in post and return it as a thumbnail if it exists
  1. function test_me() {
  2. $files = get_children('post_parent='.get_the_ID().'&post_type=attachment&post_mime_type=image');
  3. if($files) :
  4. $keys = array_reverse(array_keys($files));
  5. $j=0;
  6. $num = $keys[$j];
  7. $image=wp_get_attachment_image($num, 'large', false);
  8. $imagepieces = explode('"', $image);
  9. $imagepath = $imagepieces[1];
  10. $thumb=wp_get_attachment_thumb_url($num);
  11. print "<img src='$thumb' class='thumbnail' />";
  12. endif;
  13. }
  14.  
  15. <?php test_me(); ?>

以上是关于在博客文章中找到第一张图片并将其作为缩略图返回的主要内容,如果未能解决你的问题,请参考以下文章

没有点击的第一张图片

如何将带有 imagepickercontroller 的照片作为缩略图放入 collectionView 单元格

在 Jekyll 中,我如何获取帖子的第一张图片?

自定义博客园背景

DEDECMS教程:列表页缩略图随机调用

请问有大神知道C#怎么获取上传的文档的缩略图吗?