在博客文章中找到第一张图片并将其作为缩略图返回
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在博客文章中找到第一张图片并将其作为缩略图返回相关的知识,希望对你有一定的参考价值。
This will find the first image in post and return it as a thumbnail if it exists
function test_me() { $files = get_children('post_parent='.get_the_ID().'&post_type=attachment&post_mime_type=image'); if($files) : $keys = array_reverse(array_keys($files)); $j=0; $num = $keys[$j]; $image=wp_get_attachment_image($num, 'large', false); $imagepieces = explode('"', $image); $imagepath = $imagepieces[1]; $thumb=wp_get_attachment_thumb_url($num); print "<img src='$thumb' class='thumbnail' />"; endif; }
以上是关于在博客文章中找到第一张图片并将其作为缩略图返回的主要内容,如果未能解决你的问题,请参考以下文章