您现在的位置是:首页 > 教程 > dedecms教程dedecms教程
织梦dedecms图集在首页列表页调用并且自定义输出几张的方法
笑霜2023-09-17 16:33:00dedecms教程已有人查阅
导读不改动官方核心文件,在自定义方法文件里加入个方法来实现打开 \include\extend.func.php 在最下面加入这个方法function G
不改动官方核心文件,在自定义方法文件里加入个方法来实现
打开 \include\extend.func.php 在最下面加入这个方法
前台模板 首页 或者 列表页 中调用
[field:id function=Getimgurls(@me,4)/]
数字4是调用几张图片 本文来源于:http://www.ebingou.cn/dedediy/p/7039910.html Power by dedediy
打开 \include\extend.func.php 在最下面加入这个方法
function Getimgurls($aid,$num=4)
{
global $dsql;
$imgurls = $result = '';
$imgrow = $dsql->GetOne( "Select imgurls From `dede_addonimages` where aid='$aid' ");
$imgurls = $imgrow['imgurls'];
if($imgurls != '')
{
$dtp = new DedeTagParse();
$dtp->LoadSource($imgurls);
$images = array();
if(is_array($dtp->CTags))
{
foreach($dtp->CTags as $ctag)
{
if($ctag->GetName() == 'img')
{
$row = array();
$row['width'] = $ctag->GetAtt('width');
$row['height'] = $ctag->GetAtt('height');
$row['imgsrc'] = trim($ctag->GetInnerText());
$row['text'] = $ctag->GetAtt('text');
$images[] = $row;
}
}
}
$dtp->Clear();
$i = 0;
foreach($images as $row)
{
if($i == $num) break;
if($row['imgsrc'] != '')
{
$result .= "<li><div class='pic'><a title='{$row['text']}' href='{$row['imgsrc']}'><img src='{$row['imgsrc']}' mid='{$row['imgsrc']}' big='{$row['imgsrc']}' width='70' height='70'></a></div></li>";
}
$i++;
}
return $result;
}
}
上面代码中标红的地方改成你自己的,注意单双引号前台模板 首页 或者 列表页 中调用
[field:id function=Getimgurls(@me,4)/]
数字4是调用几张图片 本文来源于:http://www.ebingou.cn/dedediy/p/7039910.html Power by dedediy
本文标签:
很赞哦! ()
相关文章
随机图文
-
dedecms实现按栏目分类搜索
dedecms实现栏目分类{dede:type} {/dede:type} -
织梦dedecms5.7文章列表页调用带链接TAGS的方法示例
众所周知dedcms默认在文章列表页是不能调用带链接的TAGS的,需要手动增加一个函数才可以。我们找到在include/helpers/archive.h -
dedecms使用sql语句批量删除文章的写法
DELETE FROM dede_addonarticle WHERE aid >= 1000 and aid<=2000;删除文章ID1000-2000的文章谨慎操作哦 运行前请先备份后果自付。 -
dedecms织梦自动把未审核文章的时间设定为当前时间的方法
自动把未审核文章的时间设定为当前时间功能:进入编辑文章时候,对于未审核的文章,自动把发布时间框里显示当前系统时间,如果文章已经审核过,则发布时间是不变。
留言与评论 (共有 条评论) |