Typecho实现附件图片缩略图以及随机缩略图方法
ssr
撰写于 2022年 02月 26 日

老蒋在之前"Typecho调用文章第一张图作为缩略图以及随机缩略图调用"文章中有整理到使用文章中第一个图片作为缩略图的,如果文章中没有图片那就用随机图片。这里存在一个问题,如果我们希望缩略图比较规范一些,希望自己定义缩略图,那总不能一直用第一张图片作为缩略图吧。
所以考虑到是否可以用Typecho中附件中的图片作为缩略图。这样我们可以控制缩略图。
第一、定义函数

 function thumb($obj) { $rand_num = 5; 
//根据我们随机图片文件夹中的图片数量
 if ($rand_num == 0) {<br> $imgurl = "随机图片存放目录/0.jpg?imageMogr2/format/webp"; 
//如果$rand_num = 0,则显示默认图片,须命名为"0.jpg?imageMogr2/format/webp"
 }else{
 $imgurl = "随机图片存放目录/".rand(1,$rand_num).".jpg?imageMogr2/format/webp";
 // 须按"1.jpg?imageMogr2/format/webp","2.jpg?imageMogr2/format/webp","3.jpg?imageMogr2/format/webp",一定要安装顺序
 }
 $attach = $obj->attachments(1)->attachment;
 if(isset($attach->isImage) && $attach->isImage == 1){
 $thumb = $attach->url;
 }else{ $thumb = $imgurl;
 }
 return $thumb;
 } 

这个文件我们需要放到网站主题下的Functions.php文件中。
第二、调用图片

 <img src="<?php echo thumb($this); ?>"/> 

这里我们就在需要的位置调用图片。

Typecho实现附件图片缩略图以及随机缩略图方法

老蒋在之前"Typecho调用文章第一张图作为缩略图以及随机缩略图调用"文章中有整理到使用文章中第一个图片作为缩略图的,如果文章中没有图片那就用随机图片。这里存在一个问题,如果我们希望缩略图比较规范一些,希望自己定义缩略图,那总不能一直用第一张图片作为缩略图吧。
所以考虑到是否可以用Typecho中附件中的图片作为缩略图。这样我们可以控制缩略图。
第一、定义函数

 function thumb($obj) { $rand_num = 5; 
//根据我们随机图片文件夹中的图片数量
 if ($rand_num == 0) {<br> $imgurl = "随机图片存放目录/0.jpg?imageMogr2/format/webp"; 
//如果$rand_num = 0,则显示默认图片,须命名为"0.jpg?imageMogr2/format/webp"
 }else{
 $imgurl = "随机图片存放目录/".rand(1,$rand_num).".jpg?imageMogr2/format/webp";
 // 须按"1.jpg?imageMogr2/format/webp","2.jpg?imageMogr2/format/webp","3.jpg?imageMogr2/format/webp",一定要安装顺序
 }
 $attach = $obj->attachments(1)->attachment;
 if(isset($attach->isImage) && $attach->isImage == 1){
 $thumb = $attach->url;
 }else{ $thumb = $imgurl;
 }
 return $thumb;
 } 

这个文件我们需要放到网站主题下的Functions.php文件中。
第二、调用图片

 <img src="<?php echo thumb($this); ?>"/> 

这里我们就在需要的位置调用图片。

赞 (0)

猜您想看

评论区(暂无评论)

这里空空如也,快来评论吧~

我要评论