>
导航首页 » 技术教程

emlog 缩略图不同实现方法:正文-附件-随机图片

2024/10/28 15:54:53    懒猫导航网    已浏览8次

  实现emlog列表缩略图先调用正文第一张图片,没有则调用附件图片,如果前两者都没有则调用随机图片

  第一步:首先在模板的module.php文件中最后面加入如下代码

<?php
//全局匹配正文中的图片并存入imgsrc中
function img_zw($content) {
        preg_match_all("|<img[^>]+src=\"([^>\"]+)\"?[^>]*>|is", $content, $img);
        $imgsrc = !empty($img[1]) ? $img[1][0] : '';
        if($imgsrc):return $imgsrc;
        endif;
}
//Custom: 获取附件第一张图片
function img_fj($logid) {
        $db = MySql::getInstance();
        $sql = "SELECT * FROM ".DB_PREFIX."attachment WHERE blogid=".$logid." AND (`filepath` LIKE '%jpg' OR `filepath` LIKE '%gif' OR `filepath` LIKE '%png') ORDER BY `aid` ASC LIMIT 0,1";
        $imgs = $db->query($sql);
        $img_path = "";
        while($row = $db->fetch_array($imgs)) {
                $img_path .= BLOG_URL.substr($row['filepath'],3,strlen($row['filepath']));
        }
        return $img_path;
}
?>

第二步:然后在log_list.php的foreach循环中加入如下代码

文章回复.png管理员已设置登录后刷新可查看

该办法不适用于 emlog pro 版
pro 用户直接使用文章封面即可