dedecms分类信息内容也为什么上一篇和下一篇都显示没有了?其实上下都有文章的。
参考dedecms的帮助文档中的arclist标签
标签名称:arclist
标记简介:织梦常用标记,也称为自由列表标记,其中imglist、imginfolist、specart、coolart、autolist都是由该标记所定义的不同属性延伸出来的别名标记。
功能说明:获取指定文档列表
适用范围:全局使用
基本语法:
{dede:arclist flag='h' typeid='' row='' col='' titlelen='' infolen='' imgwidth='' imgheight='' listtype='' orderby='' keyword='' limit='0,1'}
<a href='[field:arcurl/]'>[field:title/]</a>
{/dede:arclist}
参数说明:
col='' 分多少列显示(默认为单列),53版中本属性可以通过多种方式进行多行显示
如果col='1'要多列显示的可用div+css实现
以下为通过div+css实现多列的示例:
<style type=text/css>
div{width:400px;float:left;}
</style>
{dede:arclist row='10' titlelen='24' orderby='pubdate' idlist='' col='2'}
•[field:textlink/]([field:pubdate function=MyDate('m-d',@me)/])<br/>
{/dede:arclist}
当col>1将使用原来的table多列方式显示
row='10' 返回文档列表总数
typeid='' 栏目ID,在列表模板和档案模板中一般不需要指定,在首页模板中允许用","分开表示多个栏目;
getall='1' 在没有指定这属性的情况下,在栏目页、文章页模板,不会获取以","分开的多个栏目的下级子类
titlelen = '30' 标题长度 等同于titlelength
infolen='160' 表示内容简介长度 等同于infolength
imgwidth='120' 缩略图宽度
imgheight='90' 缩略图高度
listtype='all' 栏目类型 image含有缩略图 commend推荐
orderby='sortrank' 文档排序方式
§ orderby='hot' 或 orderby='click' 表示按点击数排列
§ orderby='sortrank' 或 orderby='pubdate' 按出版时间排列
§ orderby='near'
§ orderby=='lastpost' 按最后评论时间
§ orderby=='scores' 按得分排序
§ orderby='id' 按文章ID排序
§ orderby='rand' 随机获得指定条件的文档列表
keyword='' 含有指定关键字的文档列表,多个关键字用","分
innertext = '' 单条记录样式
aid='' 指定文档ID
idlist ='' 提取特定文档(文档ID)
channelid 频道ID
limit='起始ID,记录数' (起始ID从0开始)表示限定的记录范围(如:limit='1,2' 表示从ID为1的记录开始,取2条记录)
flag = 'h' 自定义属性值:头条[h]推荐[c][p]幻灯[f]滚动[s]跳转[j]图文[a]加粗[b]
noflag = '' 同flag,但这里是表示不包含这些属性
orderway='desc' 值为 desc 或 asc ,指定排序方式是降序还是顺向排序,默认为降序
subday='天数' 表示在多少天以内的文档
用arclist调用于附加表字段的方法:
要获取附加表内容,必须符合两个条件
1、指定 channelid 属性
2、指定要获得的字段 addfields='字段1,字段'
如:
{dede:arclist addfields='filetype,language,softtype' row='8' channelid='3'}
[field:textlink /] - [field:softtype /]<br />
{/dede:arclist}
底层模板字段:
ID(同 id),typeid,sortrank,flag,ismake,channel,arcrank,click,money,title,shorttitle,color,writer,
source,litpic(同picname),pubdate,senddate,mid, lastpost,scores,goodpost,badpost,notpost,
description(同infos),filename, image, imglink, fulltitle, textlink, typelink,plusurl, memberurl, templeturl,
stime(pubdate 的"0000-00-00"格式)
其中:
textlink = <a href='arcurl'>title</a>
typelink = <a href='typeurl'>typename</a>
imglink = <a href='arcurl'><img src='picname' border='0' width='imgwidth' height='imgheight'></a>
image = <img src='picname' border='0' width='imgwidth' height='imgheight' alt=’titile’>
字段调用方法:[field:varname/]
如:
{dede:arclist infolen='100'}
[field:textlink/]
<br>
[field:infos/]
<br>
{/dede:arclist}
注:底层模板里的Field实现也是织梦标记的一种形式,因此支持使用PHP语法,Function扩展等功能。
如: 给当天发布的内容加上 (new) 标志
[field:senddate runphp='yes']
$ntime = time();
$oneday = 3600 24;
if(($ntime - @me)<$oneday) @me = "<font color='red'>(new)</font>";
else @me = "";
[/field:senddate]
在后台设置:
方法1、系统---系统基本参数---性能选项---文章自动分页大小(单位: K): 设置文字的量就可以了。
方法2、还可以在后台发布文章的时候,用编辑器的分页标示 #p#副标题#e#
如图:
修改文件/include/arcarchivesclass
将以下代码
$next = (is_array($nextR) " where arcid={$nextR['id']} " : ' where 1>2 ');$pre = (is_array($preR) " where arcid={$preR['id']} " : ' where 1>2 ');
$query = "Select arcid,arctitle,arcshorttitle,arctypeid,arcismake,arcsenddate,arcarcrank,arcmoney,arcfilename,arclitpic,
ttypedir,ttypename,tnamerule,tnamerule2,tispart,tmoresite,tsiteurl,tsitepath
from `#@__archives` arc left join #@__arctype t on arctypeid=tid ";
改为如下
if($this->ChannelUnit->ChannelInfos[‘issystem‘]!=-1){$next = (is_array($nextR) " where arcid={$nextR[‘id‘]} " : ‘ where 1>2 ‘);
$pre = (is_array($preR) " where arcid={$preR[‘id‘]} " : ‘ where 1>2 ‘);
$query = "Select arcid,arctitle,arcshorttitle,arctypeid,arcismake,arcsenddate,arcarcrank,arcmoney,arcfilename,arclitpic,
ttypedir,ttypename,tnamerule,tnamerule2,tispart,tmoresite,tsiteurl,tsitepath
from `#@__archives` arc left join #@__arctype t on arctypeid=tid ";
}else{
$next = (is_array($nextR) " where arcaid={$nextR[‘id‘]} " : ‘ where 1>2 ‘);
$pre = (is_array($preR) " where arcaid={$preR[‘id‘]} " : ‘ where 1>2 ‘);
$query = "Select arcaid,arctitle,arctypeid,arcsenddate,arcarcrank,arclitpic,
ttypedir,ttypename,tnamerule,tnamerule2,tispart,tmoresite,tsiteurl,tsitepath
from `"$this->ChannelUnit->ChannelInfos[‘addtable‘]"` arc left join #@__arctype t on arctypeid=tid ";
}
首先,登录网站后台。
第二,选择系统-》系统基本参数-》性能选项-》(是/否)开启分页标题,开启会影响HTML生成速度-》选择是。
第三,选择开启长文章自动分页-》输入文章自动分页大小。
第四,点击确定。
注意:
合理设置分页大小,过大容易增加服务器负担,过小影响页面美观;
确定保存后,需更新所有文档,清楚网站缓存,才能看到效果。
方法一, 如果被删除的文件量比较大,可以用数据库恢复 方法二, 你删除了栏目,是可以新建栏目的,但是路径要和之前的栏目符合,才能在后台回收站进行恢复文档 前提是你没关掉文章回收站功能, 还有没清空回收站, 否则不能恢复文章 最后告诉你, DEDE文档是可以随意转移的, 是可以把被删栏目下的文件移到现在的新栏目下
1频道:
频道相当于是大的分类,明显的区别是文章频道和频道、分类信息的区别,在一定程度上讲是按大功能功用分类。
2、栏目,频道下面可以设置多个栏目,一般说来,如果 不涉及到过多的子网站,特别是需要绑定二级栏目的,最好就用默认的频道下设置栏目就OK了,这里的频道和栏目的名称都是一种官方定义,比如你做个电视台或者娱乐网站,完全可以设置个一级栏目叫XX频道,下面还可以设置二级三级。
###
频道虽然可以看做大的分类,但是频道下边需要设置栏目,同时绑定相应的模板功能,把相关的带号的设置完成才能发布文档。
需要注意的是我以前遇到过的问题,复制了新闻频道换了另一个名字比如叫科技频道,功能完全是一样了,但是在百度新闻推送里面是没有的,官方的解释是只能使用新闻频道,其实后来一想,如果不是为了绑定二级域名将频道作为独立网站,完全可以将就默认的文章频道就行了。
具体的使用,其实可以多学习下官方的帮助文档。
helpdedecmscom
织梦重在研究模板和调用,祝你顺利完工
1、首先使用浏览器进入dedecms网站,登录到DEDECMS后台。
2、接着依次点击左侧功能菜单中的“模板”>>“默认模板管理”。
3、在模板列表找到要修改的模板,例如“文章频道封面”模板,点击“修改”。
4、然后在模板文件中找到下图所示代码,将此段代码修改为:{dede:arclist row='5' type='image'}。
5、最后保存模板编辑并更新,更新完成,就可以在文章详情页调用和修改购物车了。
0条评论