标签 "缩略图" 下的文章

共找到 3 篇文章

自动调用第1个文章图片

· 2 分钟阅读
<?php preg_match_all("/\<img.*?src\=(\'|\")(.*?)(\'|\")[^>]*>/i", $this->content, $matches); $imgCount = count($matches[0]); if($imgCount >= 1){ $img = $matches[2][0]; echo <<...

typecho缩略图函数分享

· 3 分钟阅读
在主题下functions.php文件中加入以下代码: function thumb($cid) { if (empty($imgurl)) { $rand_num = 10; //随机图片数量,根据图片目录中图片实际数量设置 if ($rand_num == 0) { $imgurl = "随机图片存放目录/0.jpg"; //如果$rand_num = 0,则显示默认图片,须命名为"0.jpg...

自定义某分类并输出缩略图

· 2 分钟阅读
自定义调用某分类,并输出缩略图 <?php $this->widget('Widget_Archive@index', 'pageSize=4&type=category', 'mid=23')->to($indexpub); ?> <?php while($indexpub->next()): ?> <?php $indexpub->...