您现在的位置是:首页 > 教程 > dedecms教程dedecms教程
实现让dedecms支持notypeid的属性方法
灵雁2023-09-24 21:18:47dedecms教程已有人查阅
导读打开/include/taglib/arclist.lib.php文件,找这段代码(大概在130行):return lib_arclistDone($re
打开/include/taglib/arclist.lib.php文件,找这段代码(大概在130行):
使用方法:
return lib_arclistDone
(
$refObj, $ctag, $typeid, $ctag->GetAtt('row'), $ctag->GetAtt('col'), $titlelen, $infolen,
$ctag->GetAtt('imgwidth'), $ctag->GetAtt('imgheight'), $listtype, $orderby,
$ctag->GetAtt('keyword'), $innertext, $envs['aid'], $ctag->GetAtt('idlist'), $channelid,
$ctag->GetAtt('limit'), $flag,$ctag->GetAtt('orderway'), $ctag->GetAtt('subday'), $ctag->GetAtt('noflag'),
$tagid,$pagesize,$isweight
);
在之后括号之后加上(注意前面的逗号):
,$ctag->GetAtt('notypeid')
然后再找到这一段代码(大概在168行):
function lib_arclistDone(&$refObj, &$ctag, $typeid=0, $row=10, $col=1, $titlelen=30, $infolen=160,
$imgwidth=120, $imgheight=90, $listtype='all', $orderby='default', $keyword='',
$innertext='', $arcid=0, $idlist='', $channelid=0, $limit='', $att='', $order='desc', $subday=0, $noflag='',$tagid='', $pagesize=0, $isweight='N')
在括号的之后加上(注意前面的逗号):
,$notypeid=0
之后再找到这一句:
$orwheres[] = ' arc.arcrank > -1 ';
在其前面增加以下代码:
if(!empty($notypeid))
{
$orwheres[] = " and arc.typeid NOT IN (".GetSonIds($notypeid).")";
}
这样,代码就修改完毕了。保存之后就在arclist标签里试试看notypeid属性吧。对于网站栏目多,内容显示时又错综复杂的情况,这样的属性还是蛮实用的。使用方法:
{dede:arclist row=6 orderby=pubdate type='image.' imgwidth='108' imgheight='150' channelid='1' notypeid='1'}
本文标签:
很赞哦! ()
相关文章
随机图文
-
织梦dedecms首页怎么调用留言板信息
1、用feedback标签调用,2、用sql标签调用,3、用loop标签调用,基本标签解析:[field:uname /]:用户昵称 -
为织梦arclist标签增加notypeid属性实现栏目过滤
织梦标签功能非常强大,只要熟悉这些标签,在前台调用各种形式的后台数据就能得心应手。当然,如果能懂点技术,对织梦的标签再加以改进,那就更完美了。 -
修改dede织梦自定义表单字段为必填项的示例
织梦自定义表单用的最多的就是制作留言板,报名等功能,但是添加的字段不填写就能提交,容易被恶意提交,为了防止这些,我们可以把这些字段选项设定为必填项。 -
dede织梦横排登录框怎么修改
织梦程序刚刚安装上去时,其首页登录框在右边的一小块,而且所有的显示是竖排的。这对于版面整洁和有用性来说实在是不太方便。现在都十分流行登录框是在顶部的次导航栏上
留言与评论 (共有 条评论) |
本栏推荐
相关标签
大家喜欢
- dede织梦网站搬家出现/include/templets/default/index.htm Not Fo
- dedecms文章标题、来源、摘要、作者等字段的字数限制修改方法
- dede织梦arclist不能调用文章副栏目或多个副栏目的解决方法
- dedecms教程PHPNow服务器套件安装方法
- 织梦dedecms列表页怎么去除文章标题加粗
- 织梦dedecms中增加父栏目调用以及多级支持currentstyle的方法
- 织梦dedecms源码安装步骤教程
- UCweb浏览器访问DedeCmsWap页面空白怎么办
- dede织梦Ping插件让搜索引擎知道您的网站更新状态
- 织梦dedecms首页列表页怎么调用文章TAG标签