我可以看到,在我的上传文件夹中,我上传到帖子中的所有图片都有4种不同的尺寸。
我没有为帖子设置精选图片,但我希望缩略图尺寸显示在我的首页上。
我试过把the_post_thumbnail();在循环中但没有显示任何内容。
我错过了什么吗?是否有其他方法可以获取放在帖子中的图像的缩略图大小?
目前我使用捕获图像功能来抓取帖子中的第一个图像并使用此代码将其显示在首页上,是否可以对其进行编辑以获取缩略图?
function catch_that_image() {
global $post, $posts;
$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
$first_img = $matches [1] [0];
//$first_img = substr($first_img, 0, -4);
if(empty($first_img)){ //Defines a default image
$first_img = bloginfo('template_directory');
$first_img .= "/images/default.png";
}
return $first_img;
}
由于
答案 0 :(得分:0)
the_post_thumbnail显示帖子中的精选图片,因此如果您没有设置任何图片,则不会显示任何内容。